lolenik
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Backup] Edit or Delete custom backupI second this question!
Forum: Plugins
In reply to: [WP Backup] 'run now' option goneI have the same problem. I can’t change the settings of an existing schedule any more either!
Forum: Plugins
In reply to: [Email Before Download] Multiple File Download IssuesWhat is the <ebd/> and where does it go in the form?
Forum: Reviews
In reply to: [Cunjo: The Best Free Social Share Plugin] Problem with empty OG image tagI realize that this is a lame fix, but it will work until the developers update this plugin. If you can FTP into your site, go to wp-content > plugins > share-social. Open index.php and around line 1049 it has
$headfixes = '<meta property="og:image" content="'.wp_get_attachment_thumb_url( get_post_thumbnail_id(), 'thumbnail' ).'"/>';
I just commented out that line, so now it’s:
//$headfixes = '<meta property="og:image" content="'.wp_get_attachment_thumb_url( get_post_thumbnail_id(), 'thumbnail' ).'"/>';
Now I can run the Facebook debugger (https://developers.facebook.com/tools/debug/) and it works great.
Forum: Themes and Templates
In reply to: [Tuesday] Footer Widgets Disappear with Static Front PageAlthough this is old, I did find a solution, though not an optimal one because I don’t like to edit theme files, but, hey, it worked and it was easy. For me, the blog posts showed the footer widgets, but not the pages. I edited the footer.php file by changing this:
<?php if ( !is_singular()): ?> <div class="footer-widget-section"> <?php if ( ! dynamic_sidebar( 'footer-1' ) ) : ?> <?php endif; ?> <?php if ( ! dynamic_sidebar( 'footer-2' ) ) : ?> <?php endif; ?> <?php if ( ! dynamic_sidebar( 'footer-3' ) ) : ?> <?php endif; ?> </div> <?php endif; ?>
to this:
<?php //if ( !is_singular()): ?> <div class="footer-widget-section"> <?php if ( ! dynamic_sidebar( 'footer-1' ) ) : ?> <?php endif; ?> <?php if ( ! dynamic_sidebar( 'footer-2' ) ) : ?> <?php endif; ?> <?php if ( ! dynamic_sidebar( 'footer-3' ) ) : ?> <?php endif; ?> </div> <?php //endif; ?>
In case it’s not obvious, I commented out the
if ( !is_singular()):
bit and it’s correspondingendif