moikirsch
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Ads – Ad Manager & AdSense] Ads hidden on the backendThe issue was another plugin…. so I was able to solve it myself.
Forum: Plugins
In reply to: [Simple Chat Button] Whatsapp started throwing “This link is incorrect”There was some invisible character that I was able to see with the SQL command… delete it with phpmyadmin and it was fixed.
I’m not sure how it was added or when but I was able to fix it.
Thanks
Forum: Plugins
In reply to: [Simple Chat Button] Whatsapp started throwing “This link is incorrect”I’m pretty sure there are no extra characters.
What other info would be helpful?Hi @rafinkhan
I have exactly the same issue and I’m using the latest version. How can I follow up on this?
I don’t have any active link right now because my test server is local and the live version for obvious reasons I had to turn of the plugin.
Just test it with a variable product (with different pricing on each product) and you should be able to test that when you choose a variable (size, color, etc) it won’t display the price as it should.
I’m having the same problem. It was working perfectly and the latest update broke variation pricing.
Forum: Plugins
In reply to: [Groups] Products/Posts invisible for guestsHi Kento,
I actually need to accomplish the inverse.
I have certain capabilities that I’m using to filter products for logged in members.
For example member01 can see product01 and product03
member02 can see product02 and product03I would like to allow guest to see product01, product02 and product03. I believe that the best option would be to assign a new capability to the guest user somehow.
Is there a way to ignore these capabilities or add certain capability to users who hasn’t login? I’m more than confortable creating some type of plugin but as far as I was able to read the API I can’t see a direct way of doing it.
Forum: Plugins
In reply to: [WP Geo] Only backend (don't load JS in front end)Doing somo follow up… I did this and it seems to work.
Am I missing something else?
if( class_exists('WPGeo') && !is_admin() ){ remove_action( 'wp_enqueue_scripts', array( $wpgeo, 'enqueue_scripts' ) ); remove_action( 'wp_head', array( $wpgeo, 'meta_tags' ) ); remove_action( 'wp_head', array( $wpgeo, 'wp_head' ) ); remove_action( 'wp_footer', array( $wpgeo, 'wp_footer' ) ); }I’ll look into it.
The funny thing is that it works with some installations and not with some other ones.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] register_http_request_failed@jeremy herve, I didn’t start my own thread since it is the same issue (or at least it appears to be).
One of the domains is http://www.hacerparaser.com/
Thanks
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] register_http_request_failedI’m having the same issue in several domains.
My server is snowbird if it helps.
Thanks
Forum: Fixing WordPress
In reply to: get_posts returns an empty arrayFixed! The problema was NOT with this piece of code… there was another filter adding some variables to WP_Query and because of that there was no results.
After modifying (removing) those filters everything seems to be fixed.
Forum: Fixing WordPress
In reply to: get_posts returns an empty arrayInside the main loop.
A sample of the values in $argumentos:
Array ( [posts_per_page] => -1 [orderby] => menu_order [order] => ASC [post_type] => attachment [post_parent] => 20 [post_status] => [exclude] => 39 [post_mime_type] => image )Forum: Hacks
In reply to: shortcode_atts defaults are not workingHi Big Bagel,
There shouldn’t be a notice since I’m setting up the default value for size to be ‘1/2’ even if the user doesn’t call it.
Actually I think that the problem was related to the extract function.
I was able to fix it using the following line instead:
$atts = shortcode_atts( array( 'id' => '', 'size' => '1/2', 'group' => '', 'showtitle' => true, 'showicon' => true, 'showbody' => true, 'icon' => ''), $atts );Forum: Plugins
In reply to: wp Time Machine FeedbackI would love to see a “manual backup”… so I can download a file directly.