The scheduled event, ads_cron_image_upload_event, is late to run. Your site still works, but this may indicate that scheduling posts or automated updates may not work as intended.
any advise how to get wordpress cron to work the normal way?
I also tried adidng define(‘ALTERNATE_WP_CRON’, true); to wp-gonfig.php but that caused another error with a plugin so I removed that line again.
]]>the sitewide setting is showing only 2 options (header and footer)
specific pages shows 4 options (header, before body, after body, footer)
if a snippet created for specific pages is changed to sitewide, the 2 extra options disappear and the code is arbitrarily assigned to either header or footer
what’s going on?
thanks
]]>I have created two ads for AMP (SiteWide)
1) Below the header (SiteWide)
2) Above the footer (SiteWide)
But seems both are working only on “single post” and not on every page (SiteWide).
Exampl: it’s not working on homepage, taxonomy pages, tags, and categories.
Kindly help me to solve this.
Thank You
Best Regards
If you have any suggestions how to go about it, I’m most gratefull.
Thanks in advance,
Bert.
I found a sample code showing how to do this, and have modified it for my domain and placed it at the end of my theme’s functions.php file (before the “?>”) but I seem to be stuck in a redirect loop. This is the error I see in the error log when I use the code below:
PHP Parse error: syntax error, unexpected ‘;’ in /nas/content/live/petersengames3/wp-content/themes/seohub/functions.php on line 212
Here are the instructions I found elsewhere on this forum:
Here’s a code snippet for you to try out, drop this into your functions.php file after you customize the redirects to your domains and respective countries. We’ve seen this work well with other GeoIP Users:
function country_geo_redirect() {
$country = getenv(‘HTTP_GEOIP_COUNTRY_CODE’);
if ( $country == “US” ) {
wp_redirect( ‘https://us.domain.com’;, 301 );
exit;
} else if ( $country == “FR” ) {
wp_redirect( ‘https://fr.domain.com’;, 301 );
exit;
}
}
add_action(‘init’, country_geo_redirect’);
Issue-1: on Home the most recent post is not shown in the list. When I add a new post, then it is not shown also but then the not-shown-previous one shows up. It looks like my Home page likes to show the most-recent-post as a Featured Post, but because the option is switched off it doesn’t show this post at all.
Issue-2: on Sitewide Featured Posts is turned on, but it doesn’t show up in the actual site when selecting a Category.
Issue-3: Customizer allows for setting Featured Posts for Sitewide only when the Preview window has focus on Home. But when Preview has focus on e.g. a Category (= Sitewide), then Customizer doesn’t present setting Featured Posts on or off any longer. Confusing!
]]>Does anyone have a working solution to add the thumbnails from source blogs on the main blog?
Or have an alternative plugin that can do this?
Thanks in advance
]]>