Idiom
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Social Share Buttons] Email ShareHi Robin – Can you send me a link to your page?
Forum: Plugins
In reply to: [Easy Social Share Buttons] not seeing the buttons I’m trying to addHi Jules – Sorry, we currently do not support whatsapp.
Forum: Plugins
In reply to: [Easy Social Share Buttons] Facebook Share not closing windowThanks for downloading. Are you still experiencing this issue? Testing in our environment and posting to Facebook closes the window. I’m not sure if that is some kind of Facebook setting though that can be changed in your app settings.
Forum: Plugins
In reply to: [Easy Social Share Buttons] Social Share recovery on SSLHi, I tested your function on a blank wordpress install (though I did the string replace for http to https) and your code worked perfectly. Are you sure there might not be another plugin that could be updating urls in the html before the page is rendered? One way you could test, besides disabling plugins, is manually add the sharing buttons to your templates with the shortcode. That way if there you’ll be able to see if there is anything else filtering ‘the_content’.
Forum: Plugins
In reply to: [Easy Social Share Buttons] Message aboveHi, I’m sorry but I don’t know what you are referring to. We don’t have a reference to essb_message_above_share in our code. Did you maybe mean to post this to another plugin’s support forum? It seems there are a few plugins with similar names.
Forum: Plugins
In reply to: [Easy Social Share Buttons] FEATURE: Add %%from%% tag to be used in emailThat is a great suggestion, and we will look into adding it in a future release.
For now we have two filters ‘update_easy_social_share_title’ and ‘update_easy_social_share_description’ you can hook into, but every share button uses the same title and description. I’m not sure that would solve your particular problem.
Thanks for downloading.
Forum: Plugins
In reply to: [Easy Social Share Buttons] email button not doing anythingThanks for downloading. How the email share works depends on your browswer because we use a standard mailto link. Usually this will open your default mail client, or if you use gmail and have chrome configured to do so, it will open a browser window with a gmail compose email page. It sounds like maybe your browser doesn’t have a default mail client set in your settings.
Forum: Plugins
In reply to: [Easy Social Share Buttons] Two Twitter Pop-Ups GeneratedThanks for downloading. We are unable to reproduce that behavior in a basic WordPress environment (2017 theme). Do you have any other details about your set up? Maybe try disabling other plugins to see if it might be effecting the sharing plugin?
Forum: Plugins
In reply to: [Easy Social Share Buttons] I couldn’t share with facebookThanks for using the plugin. Did you follow the steps for setting up an app and getting the app id on Facebook?
– Go to https://developers.facebook.com/.
– Log in using your existing Facebook account or create a new one.
– Under “My Apps” in the header, select “Add a New App”.
– Select “website”.
– Choose a name for your new app.
– Skip the quick set-up and go to your app\s dashboard. The App ID will be at the top under your app\s name.
– Under “Settings”, fill in the fields for “Namespace”, “Contact Email”, and “Site URL”. Facebook sharing will not work unless the Site URL matches the url of your WordPress site.
– Finally, go to “Status & Review” and click the button to make your app public.Forum: Plugins
In reply to: [Easy Social Share Buttons] PHP Notice: Undefined offset: 1Hi, I’m sorry but I that is not our plugin. Are you sure you are in the right support forum? Our plugin does not have a file named get-noapi-counts.php.
Forum: Plugins
In reply to: [Easy Social Share Buttons] Class ‘DOMDocument’ not foundGreat suggestion. We will look into adding this is our next update.
Forum: Plugins
In reply to: [Easy Load More] EventsThis is a great suggestion. We just added events for “elm-load”, “elm-lastPage”, and “elm-fail” to the latest version of the plugin (v1.0.2).
Now you can do something like this
$(document).on('elm-load', function () { */lazyLoad code here /* });
in your theme’s javascript.Forum: Plugins
In reply to: [Easy Load More] Showing Duplicate PostYou almost have it there. If you put the load_more_button() function before wp_reset_postdata() it should work. Hope that helps!
Forum: Plugins
In reply to: [Easy Load More] data-max-pages always set to 0Thanks for downloading the plugin. Unfortunately, part of keeping the plugin simple and straightforward is that it only works on main queries (blog page, search, archive, or taxonomy pages) not custom WP_Queries that might be on the page. We currently do not have plans to implement that feature at this time.
EDIT:
One caveat to this is that the plugin will work for custom queries if you query the ‘paged’ query var in your template.
<main id="main" class="site-main" role="main"> <?php $paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : 1; $args = array( 'post_type' => 'book', 'posts_per_page' => 4, 'orderby'=> 'date', 'order' => 'DESC', 'paged' => $paged ); $new_query = new WP_Query( $args ); if ( $new_query->have_posts() ) : /* Start the Loop */ while ( $new_query->have_posts() ) : $new_query->the_post(); get_template_part( 'template-parts/post/content', 'excerpt' ); endwhile; else : get_template_part( 'template-parts/post/content', 'none' ); endif; ?> </main><!-- #main --> <?php load_more_button(); ?> <?php wp_reset_postdata(); ?>
If your custom page template followed this basic format, it will work. If you try to include other custom queries in the same template, however, it will most likely fail.
- This reply was modified 7 years, 10 months ago by Idiom.
Forum: Plugins
In reply to: [Easy Load More] PHP error – constant already definedThank you for the suggestion. This has been implemented in the latest version of the plugin (v1.0.1).