Search Results for 'sharing'

Results from the Forum
Catalin
tagDiv Staff

Hello infozoon,

Notice that you should not buy the premium version of Seo Yoast. This is the default post sharing on Facebook -> https://www.screencast.com/t/r2sM3Ef0HDjt Check if you have og: properties activated and check them into your source page. Please check here -> https://kb.yoast.com/kb/getting-open-graph-for-your-articles/

Thanks for your understanding!

#0

Once I moved my site to GoDaddy WordPress Hosting, I am having problem with sharing my posts to Facebook.

Simion C.
tagDiv Staff

Hi,

There seems to be a code that prevents the avatars from displaying, as well as the author box, tags, next/prev articles and bottom sharing
https://www.screencast.com/t/jZLFEJXDO
I could give you a quick fix to further overwrite this code, but it would be better to remove it. Please check all the theme panel Custom code sections and remove it if it is present there. Mainly check the Custom HTML and Custom CSS sections.

Thanks

yoaneslitha
Participant
#0

How to solve problems related to not appearing photos, descriptions and titles of an article when sharing on facebook. I’m using newsmag. for example in the following article http://posomediacenter.com/?p=339. Thanks

Thomascth
Participant
#0

Hi,

Can anyone help me with this, the social icons in my websites’ footer is not aligned to each other. This happens particularly only instagram icons. Here is the picture.

Anyone can help?

simchris
tagDiv Member

Well, a good normal debug procedure is to disable plugins until you determine which one causing error. Turning debug ‘on’ for WP might also help with that.

The issue with FB is not related to much of anything — we have the issue where when manually sharing to FB sometimes they don’t capture anything and just have the URL — and we have dedicated 8 core XEON server in Class A IBM Datacenter. FB just times out on its own with up to 2 billion users. This morning I had to do the ‘refresh attachment’ option on FB for one thing. Annoying, but that’s FB and nothing you can do about THAT.

Simion C.
tagDiv Staff

Hi,

We will take a look at the category page issues and reply by email. I have inspected the related articles that are coming from the theme, the images are displayed properly
https://www.screencast.com/t/0N0i4xzU6ao8
But there is a different related section, I believe coming from the Jetpack plugin. You can disable that related section from the plugins settings
https://jetpack.com/support/related-posts/
There would be no need to have 2 related articles in the post page.
Regarding the sharing please provide more details about the issue so we can understand better what it is happening. The Facebook share functionality is handled by the Yoast SEO plugin
https://forum.tagdiv.com/facebook-share/

Thanks

themajiks
Participant
#0

Hi. Please refere to this post for further clarification.
https://forum.tagdiv.com/newsmag-sharing/
Can I add Linkedin to these icons? Its very important to add that.
Thanks.

dariuscmd
Participant
#0

Hey,

I’ve just migrated my website to https. The issue I have is with the Sharing buttons and the counter is 0. How can I have my numbers back?

Thanks,
Darius

Simion C.
tagDiv Staff

Hi,

The easiest way to add more sharing options would be to use a plugin. Search for plugins that have the socials you need and try a few of them. Choose the one you like and works properly.

Thanks

FrankMulder.Media
Participant
#0

Hi,

Is there some preloader active on the theme?
If you look at the load of my page:
https://drive.google.com/file/d/0B1wysHqKD8V1SEVlOGVYajhiaWs/view?usp=sharing

I can’t find where this goes wrong?
It doesn’t seem to be a blocking javascript. It really like the render being delayed until full pageload.
https://denachtvlinders.nl

Simion C.
tagDiv Staff

Hi,

I don’t think there are plans to make this modification to the sharing. You can make the the change in a child theme, so it will not be lost when the theme is updated
https://forum.tagdiv.com/the-child-theme-support-tutorial/

Thanks

Simion C.
tagDiv Staff

Hi,

You could change the default functionality, in the theme file where the post sharing is defined
https://www.screencast.com/t/ez682wfg
https://www.screencast.com/t/zvbX3EugDc
The get_bloginfo function is used, more about it here
https://developer.wordpress.org/reference/functions/get_bloginfo/
In the file I mentioned there are two instances of the sharing, a top sharing and a bottom sharing. Make the changes to the one you want, or both of them.

Thanks

boka003
tagDiv Member

Hi,

Thank You for reply.

Only think that i add is this in global java

// Anonymous "self-invoking" function
(function() {
// Load the script
var script = document.createElement("SCRIPT");
script.src = 'https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js';
script.type = 'text/javascript';
document.getElementsByTagName("head")[0].appendChild(script);

// Poll for jQuery to come into existance
var checkReady = function(callback) {
if (window.jQuery) {
callback(jQuery);
}
else {
window.setTimeout(function() { checkReady(callback); }, 100);
}
};

// Start polling...
checkReady(function($) {
// Use $ here...
});
})();

jQuery(document).ready(function()
{var imavidea=false;
var imafacebookvidea=false;

//Ovdje ide facebook embed code
var facebookembedlink='<iframe src="https://www.facebook.com/plugins/video.php?href=https%3A%2F%2Fwww.facebook.com%2FVideoCraftStudioProduction%2Fvideos%2F825894130902546%2F&show_text=0&width=560" width="560" height="315" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowTransparency="true" allowFullScreen="true"></iframe>';

//Ovdje ide youtube video link
var videolink="https://www.youtube.com/embed/tsPGxI4J4FI";
if(imavidea)
{
jQuery(".td-big-grid-post-4").html(jQuery(".td-big-grid-post-3").html());
jQuery(".td-big-grid-post-3").html(jQuery(".td-big-grid-post-2").html());
jQuery(".td-big-grid-post-2").html(jQuery(".td-big-grid-post-1").html());
jQuery(".td-big-grid-post-1").html(jQuery(".td-big-grid-post-0").html());
jQuery(".td-big-grid-post-1 img").css({"height":"100%", "width":"100%"});
if(!imafacebookvidea){
jQuery(".td-big-thumb").append('<iframe width="100%" height="100%" src="'+videolink+'?autoplay=1" frameborder="0" style="position:absolute; top:0;left:0; right:0; bottom:0; z-index:10" allowfullscreen></iframe>');}
else
{
var facebookispravljen=facebookembedlink.split('"400"').join('"100%"');
facebookispravljen=facebookispravljen.replace('overflow:hidden"','overflow:hidden;position:absolute; top:0;left:0; right:0; bottom:0; z-index:10; "');
jQuery(".td-big-thumb").append(facebookispravljen);
}
}
// jQuery("li.comment section.content").each(function(){jQuery(this).html(jQuery(this).html().replace(/<br/g, '<br/><br'))});
jQuery("body.single article header").first().append('<div class="sharedaddy sd-sharing-enabled">'+jQuery("div.sharedaddy").html()+'</div>');
setTimeout(function(){jQuery("#gk-content-top").css({"max-height":"500px","margin-bottom":"0"});},1);
setTimeout(function(){jQuery("#gk-banner-top").css({"transition":"all 1s","-webkit-transition":"all 1s","-ms-transition":"all 1s","-o-transition":"all 1s"}).css("margin-top","0");},1);

jQuery("#gk-mainbody-top #widget_gk_nsp-24 .gk-nsp-arts img").each(function(){var sors= jQuery(this).attr("src"); sors="wp-content/uploads/"+sors;jQuery(this).attr("src",sors);})

}

);

jQuery("#gk-inset").before('<div id="youtube_responsive-4" class="box widget_youtube_responsive">'+jQuery("#execphp-6").html()+'</div>');jQuery("#execphp-6").hide();
/* jQuery(document).ready(function(){
var a=jQuery("#execphp-6").html();
jQuery("#execphp-6").html("");
jQuery("#youtube_responsive-4").html(a);

})*/

Here is my system status: http://prntscr.com/h3orse

I have updated theme, and this is happend before update, i think update is not problem.

Syeed Chowdhury
Participant
#0

Hi,

Whenever the twitter share button in individual post page is pressed, it includes a via <twitter handle>. I want to change this twitter handle. How can I do that?

I know changing site identity is a way, but that’s not an option for me.

haqemcom
Participant
#0

Hello team TagDiv.

I want to know how to do this with logo at web?, this reason because i don’t my logo use another people/third party.
Refer this short video i take.. Google Drive (https://drive.google.com/file/d/0Bxh7OrG9j5xuV2d2WjhTMUNxU28/view?usp=sharing)

I hope Tagdiv team can help for this

Simion C.
tagDiv Staff

Hi,

If I understand correctly the image was displayed vertically in the post page. I have not heard about this issue before, could not say what is causing it. I believe the image is originally like that, from what I can see this is the original image used
https://i1.wp.com/jazko.com/wp-content/uploads/2017/10/DSC_0322.jpg
WordPress has an option to rotate the images after uploading them in the media library
https://www.screencast.com/t/WbasznpouK5
Or you can process the images before you upload them, in a photo editing program for example.
Images should not change orientation once uploaded the intended way. I have not heard of this issue before, but every day is something new.

As I understand there are multiple options to implement that verification code. The easiest way would be to add the code as mentioned, in the theme header file. That will be sufficient. The file is located in the main theme folder, on the server you are using. They can be accessed by FTP
https://premium.wpmudev.org/blog/wordpress-theme-files/
http://www.wpbeginner.com/beginners-guide/beginners-guide-to-wordpress-file-and-directory-structure/
Or you could simply use the default WordPress editor, like this
https://www.screencast.com/t/ET50xtubPbKo

Regarding the page issue, from what I can see it is not displaying correctly at the moment. Edit the page with the tagDiv composer and make sure all the elements are placed corrector. You could simply remove the block with issues and add it again.

The easiest way to implement additional sharing would be to use sharing plugins. The alternative is by code modification only and manual implementation. I could not say if or when more sharing options will be added in the theme by default.

Thanks

Catalin
tagDiv Staff

Hello morebusiness,

Sorry but the theme does not allow you to make an infinite scroll for Woocommerce page products, sorry! Only available type pagination for this kind of page is numeric pagination, like this -> https://www.screencast.com/t/SKAc517MtnVN

The mega menu has not been designed to display the shop pages but only our posts and default pages.

If you want to hide the ads for the Woocommerce page you should use a bit of CSS code for this and target your page desired by page ID.

Notice that our theme has the own sign in/login functionality and does not use the Woocoemmerce’s functionality in this case. The Woocommerce log in should be applied only for Woocommerce elements. You should check the plugin’s documentation here -> https://docs.woocommerce.com/?s=login&post_type=documentation&search_in=3

If you do not like the design of it you should create your own style using a bit of CSS code but notice that it have to do by yourself because we cannot provide custom work at the moment, sorry!

Check the plugin’s settings to enable or disable all of the specific plugin’s elements, sorry!

Sorry but that question regarding on Google Translate is not theme related! If you want to know how this can be done, please google it. As a hint, you can take a closer look at this tutorial -> http://nationbuilder.com/google_translate_widget

Sorry but please notice that the standard position of social sharing networks cannot be changed very easy because the theme layout will be damaged, sorry!

.td-default-sharing .td-social-sharing-buttons {
border: 1px solid #ebebeb;
border-radius: 20px;
}

The result is here -> https://www.screencast.com/t/R5eWwNSa

I guess that you are using the Footer template style 1 which comes by default with these widgets. If you want to change the content of it notice that you can do this only by the code. So, if you want to create your own Footer template style, I recommend you to use the Footer template style 5 according to our documentation here -> https://forum.tagdiv.com/footer-templates/

Notice that the Editor Picks is just a simple block style 7 sorted by some default parameters as you can see here -> https://www.screencast.com/t/me51SX6Vj6h

Hope this helps!

Thanks for your understanding!

alexliu0317
tagDiv Member

Hello,

I have more questions.

1) as for social media sharing on Facebook/Instagram, there are icons for them. How about Chinese social media icons such as WeChat/Line/Weibo? Do you have them available? If not, is there anyway I can have them added next to facebook…etc?

2) The problem I said I was having with vertical pictures going horizontally, I see more of that today. Once again, didn’t change any setting for the last 24 hours and it was perfectly fine yesterday. My question is, is this because of the server? (hosgator) or more of newspaper or wordpress? Could you please help me to look into these few articles, you will be able to spot what I meant pictures suppose to go vertically going horizontally. For instance, a person who should be standing, now looks like floating sideways.

Examples:
http://jazko.com/featured/joel-robuchon-interview/ ( look for pic in the middle of the article )
http://jazko.com/food/fine-dining/taipei-bellavita-beatate/ ( look for cheese and wine , 2pics)

Being said that, my front page is still very wrong with its display for the fashion section. Please try to look at the front page, and click next…all the way til 5 ( still same category) , looks like setting is wrong but I am positive we did not change anything. I am the only one who is building this website, no one else is.

Thank you.

Simion C.
tagDiv Staff

Hi,

After further research it seems that other people are experiencing a similar issue. I have found this related topic describing missing author names in sharing
https://stackoverflow.com/questions/46658129/facebook-stopped-displaying-articleauthor

Thanks

fanjumin
Blocked
#0

Hi.
China’s popular social sharing is, WeChat, Weibo, qzon, etc., can increase?
If you can not increase, I have to modify, please tell me the method.Thanks!
See the picture: https://prnt.sc/h1wiun

Edward
tagDiv Member

No.

For example try to sharing this link: https://demo.tagdiv.com/newspaper/wordpress-news-magazine-charts-the-most-fashionable-new-york-couples-in-2016/

Result:

Tag from url is correctly:

<meta property=article:author content="https://www.facebook.com/TagDiv/" />

Simion C.
tagDiv Staff

Hi,

Yes that is correct. Maybe the theme used on the other website has options for social sharing customization. Please install the Yoast SEO plugin, this is recommended to be used with the theme in this regard. It will add the necessary functionality and options for share customization.

Thanks

Simion C.
tagDiv Staff

Hi,

The post sharing in socials is handled by the Yoast SEO plugin (this is the recommended plugin), the theme has no control over this
https://forum.tagdiv.com/facebook-share/
More useful information in this matter here
https://yoast.com/social-media-optimization-with-yoast-seo/
https://kb.yoast.com/kb/custom-open-graph-tags/
https://kb.yoast.com/kb/facebook-sharing-updated-details/
https://code.tutsplus.com/tutorials/the-beginners-guide-to-wordpress-seo-by-yoast-social-settings–wp-32840

Thanks

Rhys
Participant
#0

Hi…

Trying to edit a page using TD Composer, but page content does not display in area and only shows ‘there was an error loading this message’

https://drive.google.com/file/d/0B0Gk1ZDZ_J2ucjlxZ0hyZW8tU00/view?usp=sharing

When I select view page it displays ok. https://www.inspireorb.com/become-your-inner-potential/

Any ideas what could be causing this..?

Viewing 25 results - 3,226 through 3,250 (of 5,508 total)