mangelot
Forum Replies Created
-
fixed this myself… for your interest
add this code to your themes/functions.php
add_filter( 'wpseo_breadcrumb_links', 'yoast_seo_breadcrumb_append_link' ); function yoast_seo_breadcrumb_append_link( $links ) { global $post; if ( is_singular ( 'docs' ) ) { $breadcrumb[] = array( 'url' => site_url( '/docs/' ), 'text' => 'your link text', ); array_splice( $links, 1, -2, $breadcrumb ); } return $links; }
change your link text to your link text
Forum: Plugins
In reply to: [Animate It!] animate it not working after updateYes, I can also confirm it’s all working excellent. (without the duration added only the latest update)
thanks…
Forum: Plugins
In reply to: [Animate It!] animate it not working after updateForum: Plugins
In reply to: [Amazing Hover Effects] Hover effects breaks the entire layout of the siteHello,
Same problem here pro version (css layout corrupt)
Perhaps your solution is the same as mine?
can you share your solution.Regards,
Marco Tidu
Forum: Plugins
In reply to: [W3 Total Cache] Grade F on Add Expires headersSame issue here: Mangelot Hosting website
It seems that the .png is getting an default max-age=300 cache control.
Strange issue is that it only happens to the wp-content/themes folder?
Regards, Marco
Forum: Plugins
In reply to: [Popups - WordPress Popup] Like button not displayed in EXPLORER and FIREFOXHello Damian,
Just found out that the googeplus icon is there but not on the right place, if I use F12(developer tools)inside Internet explorer or firebug in Firefox i see an css line top -10000px if I lower/change this the icon is getting on the screen.
But how to change it (where is the code)?
Best regards, Marco
Mangelot HostingForum: Plugins
In reply to: [Popups - WordPress Popup] Like button not displayed in EXPLORER and FIREFOXHello Damian,
try’d your solution and the twitter en Facebook shows up.
but no google plus?Our website: https://www.mangelot-hosting.nl wait for about 10 seconds for the popup to show up.
used shortcode `
<h1 style=”text-align: center;”>Blijf up2date met Mangelot Hosting!</h1>
<p style=”text-align: center;”>Wordt lid van onze social pages en wordt realtime op de hoogte gehouden over onze diensten!</p>
[spu-twitter user=”MangelotHosting” lang=”nl”] [spu-facebook href=”https://facebook.com/MangelotHosting”%5D [spu-google url=”https://plus.google.com/+MangelotHostingEnschede/”%5D`Best Regards, Marco
Forum: Plugins
In reply to: [Popups - WordPress Popup] Like button not displayed in EXPLORER and FIREFOXSame problem here,
Chrome displays: Twitter, Facebook and Googleplus (all three)
Firefox displays: Twitter and Facebook
IE displays: TwitterThe old deprecated social popup did work! on all browsers ?
Forum: Plugins
In reply to: [Social Count Plus] call to a member function view() on a non-objectfixed it like this, it seems to work is this correct?
changed
$this->plugin_view = $social_count_plus->view();
to this lines
if(!empty($social_count_plus)) { $this->plugin_view = $social_count_plus->view(); }
regards Marco
[Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]