diggeridoo
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Sermepa payment gateway] Assets Image path not workingSorry, here is a translation:
Hi Jesus Angel,
I’ve found a problem in the plugin behavior locating the icon images.
The plugin generates a path towards these images from the server’s root directory, and in some instalations –as mine– wordpress is installed in a subdirectory, like /WP/index.php
The plugin doesn’t keep this structure and consequently the images are not found.
It looks for:
/wp-content/plugins/woocommerce-sermepa-payment-gateway/assets/images/icons/sermepa.png
and it should be:
wp/wp-content/plugins/woocommerce-sermepa-payment-gateway/assets/images/icons/sermepa.pngHow can I fix this?
Thanks!
diggForum: Plugins
In reply to: [The Events Calendar: Category Colors] Categories> Show ALLThe hierarchy tree doesn’t work within the plugin, when you click on ‘All’ it doesn’t reload all the categories behind it.
This only works when adding to the particular event category the ‘all’ one, then it is listed in both of them BUT this annuls the cat. color due a conflict between the two cat. assigned.I hope I’ve explained myself.
You can take a look here (work in progress):
essentialinstitute.org/essential/calendario/I’ve tested the develop version from github and works fine! ??
but it still doesn’t work in the regular 3.0.5 auto-update from wordpress plugins.
Thanks for the support!Yeah! that quick fix solved the problem ?? …at least until a plugin update which will overwrite the change.
Please, let me know if I can help with localization when you have configured that in github. I’ll be glad to contribute.Thanks Andy!
Not sure how it works, but I’ll be happy to give a hand with the spanish translation at github.
Could you tell which php file is giving the output with that /category string?
Maybe changing that file will be fine to solve this particular issue.
What do you think?Ok, it’s just a test-page of the plugin:
You can check it here: essentialinstitute.org/essential/actividades/Forum: Fixing WordPress
In reply to: Problem adding iconmoon svg fontface-icons to WPThat is going to involve building your own custom walker object.
Oh my Gosh…
Forum: Fixing WordPress
In reply to: Problem adding iconmoon svg fontface-icons to WPHi, I have achieved putting the icon in the menu with the
link_before
attribute, but it appears repeated in all the items of the array.
How can I isolate each menu item for assign a different icon each?
This is the code:<div id="mainNav"> <?php wp_nav_menu( array('menu_class' => 'sf-menu', 'theme_location' => 'main', 'link_before' => '<span class="principal" data-icon="! " aria-hidden="true"></span>', 'fallback_cb' => 'default_nav')); ?> </div>
Ps. Sorry for my inexperience ??
Forum: Fixing WordPress
In reply to: Problem adding iconmoon svg fontface-icons to WPI think this is the related php code of the header:
<div id="mainNav"> <?php wp_nav_menu( array('menu_class' => 'sf-menu', 'theme_location' => 'main', 'fallback_cb' => 'default_nav' )); ?> </div>
The menus are in a array, and I think the id I’m looking for is the
'main'
I’ll take a look to your reference, thx.