Search found 7 matches

by altomarketing
Sat Apr 22, 2023 4:09 pm
Forum: General
Topic: After change host, can not add new content, but can edit
Replies: 1
Views: 2467

After change host, can not add new content, but can edit

Hello !

After migrating it from the server to a subfolder, I can't create new content, the screen goes blank.

facts

- yes I can edit and it saves fine
- yes I can create categories
- I can not generate new content, the page is blank
- i dont think it is privileges to write files, because i have ...
by altomarketing
Mon Jul 19, 2021 5:20 am
Forum: General
Topic: How to use url variables in content
Replies: 9
Views: 5684

Re: How to use url variables in content

Just for record, after i learn.

This solution is compatible with multiples variables in url:

Code: Select all

<script>
   url = window.location.href;
   dato1 = url.split( 'user=' )[1];
   dato2 = dato1.split( '&' )[0];
   document.write(dato2);
</script>
by altomarketing
Mon Jul 19, 2021 3:53 am
Forum: General
Topic: How to use url variables in content
Replies: 9
Views: 5684

Re: How to use url variables in content

EDI !!! :D :D :D :D :D :D

YOU ROCK !!

SOS LO MAS GRANDE QUE HAY !!!

thanks !!!

It works like charm !!
by altomarketing
Fri Jul 16, 2021 10:42 pm
Forum: General
Topic: How to use url variables in content
Replies: 9
Views: 5684

Re: How to use url variables in content

metadata is an fiendly url example .

See my first post (image), i want to use url variables to write it inside the post.

Live Example : http://serviciostreaming.com/manual/pru ... =joseperez

I want to post Hola joseperez , insted of Hola %user
by altomarketing
Tue Jul 13, 2021 3:57 am
Forum: General
Topic: How to use url variables in content
Replies: 9
Views: 5684

Re: How to use url variables in content

Edi wrote: Sat Jul 10, 2021 10:54 pm Which tutorial have you used?
I tested this three > https://www.codegrepper.com/code-exampl ... ing+jquery

None works inside the post, do you have any example to help me ?
by altomarketing
Sat Jul 10, 2021 10:40 pm
Forum: General
Topic: How to use url variables in content
Replies: 9
Views: 5684

Re: How to use url variables in content

This does not work in post in bluidit :(

what im missing ?

<script language="javascript" type="text/javascript">

$.urlParameters = function(params) {
var results = new RegExp("[?&]" + params + "=([^&#]*)").exec(
window.location.href
);
return results ? decodeURI(results[1]) : null ...
by altomarketing
Sat Jul 10, 2021 4:32 am
Forum: General
Topic: How to use url variables in content
Replies: 9
Views: 5684

How to use url variables in content

Hello ! i have a question, i would like to print url variables inside a post like $get or something.. how can i do it ?

I know now that i can use echo $url->parameter('user'); but it prints in all the pages , not content.

I need to use this variables by editing posts with several variables inside ...