-
AuthorPosts
-
May 14, 2013 at 3:41 pm #23259
Hi,
on http://www.welsch-lehmann.com/marketing-automation/events/ I have a list of events.
In column one I have the name of the event linked to the URL of the source.
When editing the field it works ok to enter the content in the form
<a href="http://www.example.com">Example</a>
BUT when you safe the file you get a backslash in front of the ” every time you safe the table (not the page!) resulting in a URL
<a href=\"http://www.example.com\">Example</a>
We are using Enfold ver 1.3.1
Thanks,
Frank
May 15, 2013 at 3:29 am #119110Hi,
Please download the latest version, Enfold 1.4, on your themeforest account.
Checking the page, the URL on the first column seems to be working fine.
Regards,
Ismael
May 15, 2013 at 8:41 am #119111Oh, I very much hope that my current page works fine. I have corrected all errors before I publish the life page ;-)
I loaded the current template from themeforrest. The local version.txt states Ver 1.4. However after uploading the Version number still is 1.3.1. ?!
The URL error ist still present. Check http://www.welsch-lehmann.com/testtable/
Thanks,
Frank
May 15, 2013 at 11:17 pm #119112Hi,
I’m talking about this http://www.welsch-lehmann.com/marketing-automation/events/ . The url on that page seems to be working fine.
The version number may have been forgotten, you can edit that on style.css. You’ll know if you have the Enfold 1.4 if config-woocommerce is present on your theme files.
Try to use apostrophe instead. Change this code
<a href="http://kriesi.at">Hey</a>
to this
<a href='http://kriesi.at'>Hey</a>
It adds back slashes everytime you update or save the options. Let me tag Kriesi and the rest of the support team.
Regards,
Ismael
May 16, 2013 at 9:56 am #119113Hi,
Yes, each time you save the table the // increase , so if save table 20 times will have a lot of /////////
The single quotes will work if you save the table once and don’t edit it, because after the first save a single slash will be added , and then another , etc.. So save the table but once until the fix.
That is another example ..
<a href="\'http://www.example.com\'">Example</a>
It’s probably preg_replace or some other regular expression doing something , but so far I can’t find it, lol.
Thanks,
Nick
May 26, 2013 at 9:28 pm #119114Hi!
thanks for the info. next update will fix the issue. just a matter of adding stripslashes to one of our php files ;)
Best regards,
Kriesi
May 29, 2013 at 7:57 am #119115Just checked with 1.5 but the issue with the URL in tables is still unresolved :-(
Thanks,
Frank
May 30, 2013 at 7:13 am #119116I tried to reproduce the issue with 1.5 but I couldn’t. Please try to re-install/upload all theme files again – maybe some files are not updated yet. If this still doesn’t solve the problem deactivate all third party plugins and check if this solves the issue. If not, add following code to functions.php:
//set builder mode to debug
add_action('avia_builder_mode', "builder_set_debug");
function builder_set_debug()
{
return "debug";
}insert it at the very top after
global $avia_config;
Then go to the page which contains the table shortcode and copy the content of the debug field
Afterwards post it in this forum – you can use the backtick character ` to post it as a raw code snippet.
May 30, 2013 at 11:50 am #119117 -
AuthorPosts
- The topic ‘Table fields with URL – broken when re-saving page’ is closed to new replies.