En18Zone
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Disabling product reviews doesnt disable ratings on reviewsThanks @motylanogha. I will ask the theme developer to have a look at this.
Forum: Plugins
In reply to: [WooCommerce] Move price on category pageThanks for the pointers @lorro. GeneratePress theme developer provided a snippet that worked great.
@netweblogic Thanks, updated to dev version and all seems good now at least on the frontend.
Ok, thanks for the reply.
Seems to be an issue when recurring event spans 120 days or more. I tried testing different things, see if you can make sense of it
https://pastebin.com/LbVZAjD2Thanks
That worked thanks ! But since i have recurring events, is there a way to show category past events like this:
Event name
From 2017-01-01 to 2017-04-30
Monday every week
LocationThanks a lot !
This would have been very useful even if available only in the pro version. Please consider it, thanks !
Wow such a nice plugin and support. For anybody else looking for a similar solution [events_calendar full=1 category=”-7″]is the shortcode you need.
Thank you very much !
Thanks to both of you for your guidance. But i should have been more clear in my first post, i want to display a calendar not a list. I guess there is no way to do something like [events_calendar category=”-7″]?
Would appreciate any pointers, even if its complicated php. I will give it a try and see if i can make it work on my own.
Thanks !
Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] javascript errors: undefinedThat fixes it, thank you very much for your help and for taking the time to look at this.
Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] javascript errors: undefinedI’m not using any advanced php as i’m a beginner myself
<?php if( is_page( 'contact' ) ): ?> [Map Shortcode] <?php endif; ?>
Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] javascript errors: undefinedThanks for the reply. I’m using Version 6.4.03 of the plugin and the map loads fine but i’m getting those errors on the console.
On further inspection i noticed those errors appear only when i use php conditionals to load the map on only a specific page.
Forum: Plugins
In reply to: [WP Show Posts] Woocommerce priceWell the above doesn’t seem to work but the code below gives you category link.
if ( $categ = $product->get_categories() ) echo $categ;
Forum: Plugins
In reply to: [WP Show Posts] Woocommerce priceI would have done something along the lines of https://wordpress.stackexchange.com/questions/150031/retrieve-product-category-name-by-product-category-id-woocommerce
But im curious myself how to combine both those snippets so please post back your code if you get it to work.
Forum: Plugins
In reply to: [WP Show Posts] Woocommerce priceHi
I’m currently using the
wpsp_after_title
hook to show prices for all my products but i guess its possible to target specific category,products etc. This is my code but i don’t guarantee it’s the best way to do it ??//Wpsp show product price after product title add_action( 'wpsp_after_title','jam_show_product_price' ); function jam_show_product_price() { global $product; if ( $price_html = $product->get_price_html() ) echo $price_html; }
- This reply was modified 8 years ago by En18Zone.