Phil
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-Polls] GDPR ComplianceGDPR dead line was 25 May 2018 …….
Forum: Plugins
In reply to: [Torro Forms] Old topics closed without answers :-/Hi
ok … I will check later for the WPML compatibility
TIA = Thanks In Advance π
Cheers
Forum: Plugins
In reply to: [WP-Polls] GDPR ComplianceHi!
any ETA for the official release in the next update ?
π
CheersForum: Plugins
In reply to: [WP-Polls] Don’t show result after taking poll (without editing template)Hi!
UP ^^
I’m interested π
I just want to show results on frontend for admin and show a message for visitor like : “You already answered, wait for the next one. Thanks”Translatable with WPML Pleaseeeeeee π
…. without touching the template ^^
Thanks In Advance
CheersForum: Plugins
In reply to: [Sticky Add to Cart for WooCommerce] several requestsok π
I found a workflow for my WPML issue π . all works fine now:
Below my trick πin . class-wsac.php I changed that :
<a href="<?php echo $shop_page_url; ?>/?add-to-cart=<?php echo $post->ID?>" class="mg-wsac-button <?php echo $product_class; ?> mg-wsac-round-xxlarge mg-wsac-btn cart-text">
to :
<a href="<?php printf ( __('urlcart', 'perso')); ?>/?add-to-cart=<?php echo $post->ID?>" class="mg-wsac-button <?php echo $product_class; ?> mg-wsac-round-xxlarge mg-wsac-btn cart-text">
So now I have a new string to translate where I can write my url with the good directory for each lang π- This reply was modified 7 years, 9 months ago by Phil. Reason: code tag missing
Forum: Plugins
In reply to: [Sticky Add to Cart for WooCommerce] several requestsHi!
Any news around the next update ?
Actually I have one issue with WPML π
The link of the add to cart button send here : https://www.mydomain.com/?add-to-cart=1923
But My website is translated in FR & ES … ( lang in a directory https://www.mydomain.com/FR/ . … /ES/ …. )
How can I configure your button to stay in the good language …
For FR your link should be https://www.mydomain.com/fr/?add-to-cart=1923
etc ….Please let me know … I’m almost ready to launch
TIA
CheersForum: Plugins
In reply to: [Sticky Add to Cart for WooCommerce] Hide the sticky for specific countryfixed with geo detect plugin
Forum: Plugins
In reply to: [WP YouTube Lyte] How to Hide the titleDone π
Forum: Plugins
In reply to: [WP YouTube Lyte] How to Hide the titleOkkk . .. I was thinking there was an option but if it’s by CSS
In my case it’s : .tC{display:none!important;}
Thanks man!
CheersForum: Plugins
In reply to: [WP YouTube Lyte] Security issue ? (404 cached thumb)ok tks
- This reply was modified 7 years, 10 months ago by Phil.
Forum: Plugins
In reply to: [WP YouTube Lyte] Security issue ? (404 cached thumb)Itβs not dangerous to let public access to your plugin dir ?
Why not copy the thumb to a dir into /uploads and call the thumb from there ?
So for now I need to deactivate this protection just for “your” cached thumb ?
Forum: Plugins
In reply to: [User Shortcodes Plus] How to nest shortcodes ?hi!
I went to test this very good plugin https://es.wordpress.org/plugins/hide-this/
and works fine … I will drop my function π
Thanks (y)
CheersForum: Plugins
In reply to: [User Shortcodes Plus] Shortcuts don’t work with e-mails?Hi!
Will be a good feature π
In my case I’m using Elastic Email to send all my mails. Hope yours shortcode could be working in their templates ^^
CheersForum: Plugins
In reply to: [User Shortcodes Plus] How to nest shortcodes ?Hi Kyle π
Sorry I just went to see your answer πThe member shortcode is generated by this functions :
// add shortcode member
add_shortcode( ‘member’, ‘member_check_shortcode’ );
function member_check_shortcode( $atts, $content = null ) {
if ( is_user_logged_in() && !is_null( $content ) && !is_feed() )
return $content;
return ”;
}Hope you can find a workflow π
cheers