Freitas Victor
Forum Replies Created
-
Olá duilio_pereira,
Você deve estar usando uma vers?o do PHP obsoleta, é recomendado atualizar para uma vers?o superior a 5.3.
Obrigado!
Forum: Plugins
In reply to: [WPUpper Share Buttons] [WPUpper Share Buttons] remove from iphone viewI quite understand your question, the next version will think how to add screen sizes in the options of the administration. Users can add Sizes desirable screen. Thanks
Forum: Plugins
In reply to: [WPUpper Share Buttons] Sharing report log file? (feature request)Hello!
I’ll be analyzing your feedback, is very valuable. Regarding the google analytics has an option in extra settings you can add UTM Tracking and follow it on google the shares.
Thanks for feedback.
Forum: Plugins
In reply to: [WPUpper Share Buttons] Email link not working as it should.Hello Pixeldrummer.
In the tests we did work well, the default format is used. You may not have an email manager configured on your system. To open directly into gmail will be offering this option in the administration soon.
Thanks for feedback.
Forum: Plugins
In reply to: [WPUpper Share Buttons] [WPUpper Share Buttons] remove from iphone viewHello talgalili.
When you’re on a mobile phone or tablet buttons are upgraded automatically to these devices. Thanks for feedback.Hello talgalili,
It is not currently possible, but in a future version can add this option. Thank you for feedback.
Hello Talgalili,
This bug is already fixed in the new version. Thank you for feedback.
Forum: Plugins
In reply to: [WPUpper Share Buttons] Conflict with Caldera forms pluginHello dodogogo,
Could you be more specific about your problem?Thanks!
Forum: Plugins
In reply to: [WPUpper Share Buttons] Twitter share textHello pineromira, the current version of the plugin can not change the title through the settings. You will have to do through filters.
Example:
function filter_share_title( $arguments ) {
$post_id = intval( get_the_ID() );
$meta_title = get_post_meta( $post_id, ‘_metaseo_metatitle’, true );if ( ! empty( $meta_title ) )
$arguments[‘title’] = esc_attr( $meta_title );return $arguments;
}
add_filter( ‘wpusbarguments’, ‘filter_share_title’ );Forum: Reviews
In reply to: [WPUpper Share Buttons] Everything You'll ever Need! Even has fb like!!Hello ChristieLynn, I’m very glad you enjoyed the plugin. Regarding the improvements, the new version will be added. Thank you!
Forum: Plugins
In reply to: [WPUpper Share Buttons] WPUpper Share Counter Has Stopped Working?Hello nick070b, this bug has been fixed in version 2.9.1. Thanks!
Forum: Plugins
In reply to: [WPUpper Share Buttons] Hook to unload & load CSS & JSHello, to enable or disable the loading of files simply access the extra settings page in the administration of the plugin and select the desired options.
Forum: Plugins
In reply to: [WPUpper Share Buttons] Twitter share textI made the bugfix is in version 2.8.2. Now has a new filter that can be used for all the text. Thank you for feedback, helped a lot!
Example:
function example_callback( $text, $title ) {
return $title;
}
add_filter( ‘wpusb-twitter-text’, ‘example_callback’, 10, 2 );Forum: Plugins
In reply to: [WPUpper Share Buttons] Twitter share textHello, this character can be removed through the filter “wpusb-caracter”. Soon I will be making some changes to improve this interaction.
function example_callback( $caracter ) {
return ”;
}
add_filter( ‘wpusb-caracter’, ‘example_callback’ );Forum: Plugins
In reply to: [WPUpper Share Buttons] Twitter share textHello mcgregormedia,
you can change the text through the filters ‘wpusb-twitter-before’ and ‘wpusb-twitter-after’, to filter before and after the title.
Example:
function example_callback( $text ) {$new_text = ‘example’;
return $new_text;
}
add_filter( ‘wpusb-twitter-after’, ‘example_callback’ );