bleffoman
Forum Replies Created
-
Forum: Plugins
In reply to: [View Admin As] Only a few users viewedOk gotcha.
So Shoud I put in the wp-config define(‘view_admin_as_user_query_limit’,10000);
or to use the action filter view_admin_as_user_query_limit ?please give me an example.
thanks,
FabioForum: Plugins
In reply to: [WP Social Post And Widget] Plugin is not posting without any notificationYes, GD installed
GD Version bundled (2.1.0 compatible)
With me is not solving the issue. The reset password link label is correct but when I click on it the link is corrupted by the \track\ part
Sorry decapter, which version of the plugin do you have? I have the last version 1.3.6 and I dont have this code at line 121.
If you mean the edit of the function get_track_code I did this, but is still not working.
public function get_track_code( $email_id ) { //return "<img />rw_url_email_open . $email_id . "/track-log' alt='track' />"; return "<img src='" . get_site_url() . "/index.php?main_action=track-email.php&action=o&pk=".$email_id."' alt='mydomain.com' /></a>"; }
Thanks.
- This reply was modified 6 years, 5 months ago by bleffoman.
Thank you so much! Please notify us when the bug is fixed.
Just a question. with the previous plugin version all was working correctly for me. Should I install the previous version to get it work?It’s very useful for me to track emails.
Thanks,
Fabio.I have exactly the same problem! I need to disable the plugin to send mail with links otherwise the link are corrupted with the “/track/” url.
Please help us!
- This reply was modified 6 years, 6 months ago by bleffoman.
Forum: Plugins
In reply to: [WP-CRM - Customer Relations Management for WordPress] Multiple AddressesUnfortunately that’s not my case.
I’m importing more than 1000 customers and someone has an address , others have 10 addresses.
I’d need a field like an array of addresses used to add an indefined number of these and I was wondering if with your plugin I can manage this.In case you suggest a php customization i’m also opened, no problems.
Thanks again!
Fabio.
Instead in premium edition? I just bought a license
ah… ok thanks.
Forum: Fixing WordPress
In reply to: How to add custom fields in custom product tabs in woocommerceHello, same problem for me.
Did Someone find a solution?I wrote this function, probably is there a tab parameters to fill?
Thanks in advance
function add_custom_product_attributes(&$product_attributes, $name, $value, $position = 1, $is_visible = 1, $is_variable = 1, $is_taxonomy = 0) { $product_attributes[$name] = array( //Make sure the 'name' is same as you have the attribute 'name' => htmlspecialchars(stripslashes($name)), 'value' => $value, 'position' => $position, 'is_visible' => $is_visible, 'is_variation' => $is_variable, 'is_taxonomy' => $is_taxonomy ); }