- NewsmagSharing buttons
Hi,
First of all, please ensure that you are using the latest version of the theme. If not, please update it via FTP way according to our guide from here -> https://forum.tagdiv.com/install-via-ftp/ From the Social Networks, you will affect the Social Icons which appears on the Top and Footer section from your website, like this -> https://www.screencast.com/t/ku6an6qYg Also, if you will check this section, you will find the Linkedin icon, like this -> https://www.screencast.com/t/wr5f617cBbqO Also, regarding Sharing functionality, if you will check the Post Settings -> Sharing section, you will see the Linkedin button from here -> https://www.screencast.com/t/Y5Rag5Krj7
Thanks for your understanding!
I’m sure I’m just missing something obvious. In my posts, there are sharing links for FB, Twitter, G+, and Pinterest. I want to get rid of G+ and Pinterest and add LinkedIn…I don’t see anywhere to change this. In Theme Options>Social Networks I have put the urls for only FB and LI but these default options seem to show no matter what. Where do I select what sharing options to show for posts?
thanks in advance
Dears,
i am using ‘source’, ‘via’ and ‘tags’ on individual post page. However tags are thrid on the list, below ‘via’ and below ‘source’ items.
1. I’d like to have tags above them. How can this be achieved?
2. Is it possible to have tags respresented visually in a different way (e.g. other color, bigger font size) compared with via/source elements?
3. Would it be possible to have tags list on the top of the post rather than on the bottom (e.g. right below author/date line and above sharing buttons)?
It is fine if some CSS or child theme manipulation is required, please kindly guide on how to achieve those.
Thanks,
Michal
When sharing post in facebbok some OG tags are not created. Correct sharing on Facebook is of great importance. The “property = ‘og: title'” tag is not created in the theme. How can I add this tag to the Newspaper theme?
Hi Calin,
Video here, i can’t fix this error https://drive.google.com/file/d/1n6yTvW4uH0a8fqdY3YUpRL-269lkUsiP/view?usp=sharing
Hi Calin,
yes I did. And I already increase WP_MEMORY_LIMIT to 256mb.
For .htaccess file, we have Nginx server.
Screenshot of browser’s console here
Thanks.
Hi
I´ve got the solution.
I´ve deleted title variable in this snippet from td_social_sharing.php file in my child theme.
case 'linkedin':
return array(
'url' => 'https://www.linkedin.com/shareArticle?mini=true&url=' . $page_permalink . '&title=' . $page_title,
'title' => 'Linkedin'
);
break;
my site is radarlampung.co.id
what if I activate onsignal push notification, my site hangs (network timeout) after publishing the latest posts, but if I don’t activate the plugin my site runs properly.
other than that when I migrate the site to the local server (PC / LAPTOP) the posting image does not appear, but the other goes well, only the thumbnail image does not appear. how to handle it?
screenshoot :
https://drive.google.com/file/d/17Pj2ujVwwJ4Xevs6Q6cwOr3YJ8Xa6B8V/view?usp=sharing
https://drive.google.com/file/d/1L8uNDCxugyoZ-Z-ibz94gR5c6pdvKeC6/view?usp=sharing
Hi, I recently updated WP and Newsmag theme. After that, the social sharing buttons have disappeared from posts (see https://bit.ly/2typcTz). They are correctly set to bottom, with like button that appears correctly.
We had tried the same update on a staging website before, and this has not this problem (see https://bit.ly/2T9dWeC).
Can someone help me?
Calin,
I am asking about the menu under the video player. Or am I missing something that you are sharing?
Hello,
I read all the newspaper documentation and search on the forum but I still don’t know how I could create a page with full text article without featured image, like https://seths.blog or https://zenhabits.net/picky/.
Also I love the possibility to quote directly from the text selected on the website in Seth.blog website;
Thank you,
Laurent
Hi,
You could try the solutions from these topics if the icons are replaced with strange characters
– https://forum.tagdiv.com/topic/strange-chinese-symbols-replaced-icons-and-arrows/
– https://forum.tagdiv.com/topic/font-blocked-from-loading-by-cross-origin-resource-sharing-policy-no-access-co/
These worked for most users, it is an issue with the server configuration and the required font used for the icons cannot be loaded properly.
Thanks
Right here I copied the code from td_module_single.php (includes/modules/td_module_single.php) *I’m not a programmer to understand all of that*
<?php
/**
* Class td_module_single
*/
class td_module_single extends td_module_single_base {
function get_social_sharing_top() {
if (!$this->is_single) {
return;
}
if (td_util::get_option(‘tds_top_social_show’) == ‘hide’ and td_util::get_option(‘tds_top_like_show’) != ‘show’) {
return;
}
$buffy = ”;
// @todo single-post-thumbnail appears to not be in used! please check
$image = wp_get_attachment_image_src( get_post_thumbnail_id( $this->post->ID ), ‘single-post-thumbnail’ );
$buffy .= ‘<div class=”td-post-sharing-top”>’;
if( td_util::get_option(‘tds_top_like_show’) == ‘show’ && td_util::is_amp() === false ) {
$buffy .= ‘<div class=”td-post-sharing-classic”>’;
$buffy .= ‘<iframe frameBorder=”0″ src=”‘ . td_global::$http_or_https . ‘://www.facebook.com/plugins/like.php?href=’ . $this->href . ‘&layout=button_count&show_faces=false&width=105&action=like&colorscheme=light&height=21″ style=”border:none; overflow:hidden; width:105px; height:21px; background-color:transparent;”></iframe>’;
$buffy .= ‘</div>’;
}
if (td_util::get_option(‘tds_top_social_show’) != ‘hide’) {
$share_text_show = false;
if (td_util::get_option(‘tds_top_like_share_text_show’) == ‘show’) {
$share_text_show = true;
}
if ( td_util::is_amp() ) {
$enabled_services = td_api_social_sharing_styles::_helper_get_enabled_socials();
$amp_services = array_slice( $enabled_services, 0, 5);
$buffy .= td_social_sharing::render_generic(array(
‘services’ => $amp_services,
‘style’ => ‘style1’,
‘share_text_show’ => false,
‘el_class’ => ”
), ‘td_social_sharing_article_top’);
} else {
$buffy .= td_social_sharing::render_generic(array(
‘services’ => td_api_social_sharing_styles::_helper_get_enabled_socials(),
‘style’ => td_options::get(‘tds_social_sharing_top_style’, ‘style1’),
‘share_text_show’ => $share_text_show,
‘el_class’ => ”
), ‘td_social_sharing_article_top’);
}
}
$buffy .= ‘</div>’;
return $buffy;
}
function get_social_sharing_bottom() {
if (!$this->is_single) {
return;
}
if (td_util::get_option(‘tds_bottom_social_show’) == ‘hide’ and td_util::get_option(‘tds_bottom_like_show’) == ‘hide’) {
return;
}
$buffy = ”;
// @todo single-post-thumbnail appears to not be in used! please check
$image = wp_get_attachment_image_src( get_post_thumbnail_id( $this->post->ID ), ‘single-post-thumbnail’ );
$buffy .= ‘<div class=”td-post-sharing-bottom”>’;
if( td_util::get_option(‘tds_bottom_like_show’) != ‘hide’ && td_util::is_amp() === false ) {
$buffy .= ‘<div class=”td-post-sharing-classic”>’;
$buffy .= ‘<iframe frameBorder=”0″ src=”‘ . td_global::$http_or_https . ‘://www.facebook.com/plugins/like.php?href=’ . $this->href . ‘&layout=button_count&show_faces=false&width=105&action=like&colorscheme=light&height=21″ style=”border:none; overflow:hidden; width:105px; height:21px; background-color:transparent;”></iframe>’;
$buffy .= ‘</div>’;
}
if (td_util::get_option(‘tds_bottom_social_show’) != ‘hide’) {
$share_text_show = false;
if( td_util::get_option(‘tds_bottom_like_share_text_show’) == ‘show’ ) {
$share_text_show = true;
}
if ( td_util::is_amp() ) {
$enabled_services = td_api_social_sharing_styles::_helper_get_enabled_socials();
$amp_services = array_slice( $enabled_services, 0, 5);
$buffy .= td_social_sharing::render_generic(array(
‘services’ => $amp_services,
‘style’ => ‘style1’,
‘share_text_show’ => false,
‘el_class’ => ”
), ‘td_social_sharing_article_bottom’);
} else {
$buffy .= td_social_sharing::render_generic(array(
‘services’ => td_api_social_sharing_styles::_helper_get_enabled_socials(),
‘style’ => td_options::get(‘tds_social_sharing_bottom_style’, ‘style1’),
‘share_text_show’ => $share_text_show,
‘el_class’ => ”
), ‘td_social_sharing_article_bottom’);
}
}
$buffy .= ‘</div>’;
return $buffy;
}
}
Guys need your help
Thanks! I followed the instruction. I could add in user profile options but in sharing options no extra button added. please take a look and help.
Menu does not show up when touching hamberg menu button.
Sometimes the menu works sometimes not.
Tapping the menu icon many times, it shows up.
Please see following video.
https://drive.google.com/file/d/1PBfn9HVCjJ-0ux3QoSGWP9cEA7sZ2Itu/view?usp=sharing
It appears on 3 Android devices (Samsung Galaxy and Shaomi)
I do not use any mobile theme.
The client asked you where he can add extra sharing options apart from those already in the theme.
Hi,
Something like a share counter? The theme post sharing doesn’t keep track of the number of shares made. If this is required for your website, maybe you can try some plugins, here are some examples
– https://blogpros.com/blog/2015/05/the-5-best-wordpress-share-counter-plugins
Thanks
Hi,
The posts and pages would have to be present in the database in order for the theme to display them, in blocks for example. Maybe if all these domains share the same database, it would be possible
– https://wordpress.stackexchange.com/questions/76020/two-wordpress-sites-sharing-the-same-content
Or maybe duplicate the content on all installs – https://wordpress.org/plugins/multisite-post-duplicator/
Unfortunately we haven’t tested the theme in such an environment, I can;t say what would be the best solution.
Maybe some other theme users that managed to do something similar can share their solution.
Thanks
How to show the number of people sharing?
Perhaps you get me wrong. let me describe to you in details. A subscriber visit my site and want to share a particular post with his friends via ‘messenger’ (as I mentioned it earlier, people in my country love to share news via fb messenger).
For this kind of my subscriber, I don’t have any options. Because you don’t incorporate ‘messenger’ in your social sharing option (in ‘theme panel>post settings>sharing’ there are no messenger option).
So, my request was to incorporation of messenger to your design so that I can offer it to my subscriber. Thanks!
My URL:
http://amrai71.com
Hi,
When we share a post in Facebook, image is not showing.
After debugging the url in facebook developer tool, we get: missing propertys error.
“Faltan las siguientes propiedades obligatorias: og:url, og:type, og:title, og:description, fb:app_id”
It happens in some post, not all of them. But we cannot depure the link.
Could you help us?
Thanks,
Hi,
You can place any element that is available in the composer. So while designing a cloud post template you can place the post sharing in the sticky mode
– http://prntscr.com/mkx8gv – http://prntscr.com/mkx8mo
Only while editing a cloud post template will this be possible, sharing is available only for posts.
Thanks
Hi there,
Can i use sharing bar as sticky?? i mean without using third party plugins!?. As we can
now use any elements in new custom header option with v9.5 so how can we put social sharing button in header as sticky. i mean i hope u understand. I already did the same thing in new custom header in my website (screenshot below). But it’s only show social media profiles not sharing options. Please help if anything should be possible using code or css. Now I don’t wanna use any 3rd party sharing bar plugins because they slow down my site.
Thank You.
Hi,
The theme bottom post sharing section is already set to appear just after the post content
– https://demo.tagdiv.com/newspaper/decorating-to-celebrate-the-great-outdoor-space/
So it is the other way around, the Jetpack content is being inserted between the post content and theme sharing. The theme cannot control where Jetpack inserts the elements that you seem to use (Jetpack share and Jetpack related articles).
Thanks