sollers
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Hide Login] Cannot logoutThe solution goes sth like this…
It respects our calls to wp_logout_url( $redirect ) and defaults all other non-requested logout redirects to home.
//logout url add_filter( 'logout_url', 'easy_hide_logout', 10, 2 ); function easy_hide_logout( $logout_url, $redirect ) { if ( !empty( $redirect ) ) { return $logout_url; } else { return add_query_arg( 'redirect_to', $logout_url, home_url() ); } };
- This reply was modified 8 years ago by sollers.
Forum: Plugins
In reply to: [User Login Log] Country Option not showing?Please correct the screenshots showing country fields that don’t work anymore.
Forum: Plugins
In reply to: [Advanced Post Manager] TemplatesSeems param public is missing, that should be added to demo, otherwise you cannot view/preview any of the posts. Also template should be mentioned in the documentation.
register_post_type( $this->post_type, array( 'show_ui' => true, 'labels' => $labels, 'supports' => array( 'title' ), 'public' => true, ) );
NOTE: I also cannot cancel subscription in sandbox “My preapproved payments” section, error says “Unable to cancel the profile.”
Tested multiple times with multiple sandbox accounts.
Works.
Thank you!
Hello,
I figured out why frontpage was not getting cached.
Look at 2nd row…
FRONTPAGE CACHE NOT WORKING
<? query_posts('cat=300&showposts=1'); if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <a>" rel="bookmark" title="<?php the_title(); ?>">XXL</a> <?php endwhile; ?> <?php endif; ?>
FRONTPAGE CACHE WORKING
<? query_posts('showposts=1'); if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <a>" rel="bookmark" title="<?php the_title(); ?>">XXL</a> <?php endwhile; ?> <?php endif; ?>
Any ideas how to bypass this and still pull posts from specific category?
Thank you!
Hello,
URL is not mentioned in debug email, just “Warning! Not writing another page to front page cache.”
Yes homepage is being cached, arround 200 files usually all together cached by your amazing plugin.
Although Test outputs something strange.
Fetching https://mywebsite.com/ to prime cache: OK
Fetching first copy of https://mywebsite.com/: OK
Fetching second copy of https://mywebsite.com/: OK
The pages do not match! Timestamps differ or were not found!Thank you!
Forum: Plugins
In reply to: [Plugin: Regenerate Thumbnails] This plugin is buggy and incompleteIssue is with this 2 plugins:
auto-post-thumbnailForum: Plugins
In reply to: [Plugin: Regenerate Thumbnails] This plugin is buggy and incompleteAuto regenerate assigns original sized pictures for thumbnails.
If I delete thumbnail in post via edit post and update post, then it assigns correct thumbnail.
functions.php is correct:
add_theme_support( 'post-thumbnails', array( 'post' ) ); set_post_thumbnail_size( 160, 90, true );
What is wrong?
Thank you!
Forum: Fixing WordPress
In reply to: YouTube auto embed stopped working in WP 3.0?“Attempt to automatically embed all plain text URLs” was turned off.
I thought setting was only for uploaded media.
Is there anyway to replace default player with jw player? No plugin, with auto detect url?
Forum: Fixing WordPress
In reply to: YouTube auto embed stopped working in WP 3.0?Forum: Fixing WordPress
In reply to: YouTube auto embed stopped working in WP 3.0?Is it working for the rest of you?
Forum: Plugins
In reply to: [Plugin: Pierre’s Wordspew] Plugin doesn’t work in WP 3.0Works with a bit of correction in wordspew_admin.php
Line 18:$html = implode('', file("/home/USER/public_html/wp-config.php"));
Or whatever your relative path to wp-config.php is.
I don’t remember if I changed anything else.
If it still doesn’t work I can compress the whole plugin and send it in .zip.
Forum: Fixing WordPress
In reply to: redirect to dashboardIs this a bug or my mistake?
Forum: Fixing WordPress
In reply to: Facebook “like” buttonsOr use this: https://www.ads-software.com/extend/plugins/facebook-like-box
Use: <?php facebook_like_box('PROFILE_ID', 'STREAM', 'CONNECTIONS', 'WIDTH', 'HEIGHT', 'HEADER', 'LOCALE'); ?> Example use: <?php facebook_like_box('1641919198198198', 0, 20, 500, 300, 0, 'en_EN'); ?>