Kinghuebi
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Table of Contents] Conflict with ASA 2 PluginHello Steven,
thanks for the answer. I will give it to the developer.
ASA2 is this: https://getasa2.com/
Would it be possible to establish direct contact between you and the ASA 2 developer? Unfortunately, as an end user, I don’t understand any of this…
Many thanks in advance.
Forum: Plugins
In reply to: [Easy Table of Contents] Conflict with ASA 2 PluginHello Steven,
the source for the conflict is ezTOC.
If the shortcode [toc] is on a page, the ezTOC plugin uses the function “stripShortcodes” in the file includes/class.post.php. This removes all asa2 shortcodes contained in the $tags_to_remove array.
Before:
(
[0] => wp_caption
[1] => …
[7] => asa2
[8] => asa2_img
[9] => asa2_collection
[10] => asa2_textlink
[11] => asa2_smart_collection
[12] => asa2_keywords
[13] => …
[15] => ez-toc
[16] => tocAfter:
(
[0] => wp_caption
[1] => …
[7] => asa2
[8] => asa2_img
[9] => asa2_collection
[10] => asa2_textlink
[11] => asa2_smart_collection
[12] => asa2_keywords
[13] => …
[15] => ez-toc
[16] => tocIf the ASA2 shortcodes are added to the array $shortcodes on line 30 in the file includes/inc.plugin-compatibility.php, the error no longer occurs:
$shortcodes = array (
…
‘asa2’,
‘asa2_img’,
‘asa2_collection’,
‘asa2_textlink’,
‘asa2_smart_collection’,
‘asa2_keywords’,If the ezTOC plugin did not remove these previously existing shortcodes, the problem would not arise. This should definitely be fixed, as it can certainly lead to conflicts with other plug-ins.
Can you please clean this up with an update?
Many thanks in advance.
Mario
Forum: Plugins
In reply to: [Easy Table of Contents] Conflict with ASA 2 PluginHello Steven,
but ASA 2 Plugin its function all times. But if i insert [toc] with a short code or insert it via click, then the whole Amazon layout is destroyed. So ezTOC must have some cause…
I can give you login data over an other secure way if you want.
Many thanks in advance.
Mario
- This reply was modified 3 years, 6 months ago by Kinghuebi.
Hello Cais,
i deactivated all plugins and found out that the WP Super Cache ist the problem. I think it happened after update on version 1.4.7.
Do you have any suggestions, solutions?
Best regards.
Mario
Forum: Plugins
In reply to: Problem with URL of the text widgetsThanks ??
I deleted the wrong meta content directly in the database…
Thank you,
the line was at the bottom of the header.php.
It works now… ??