CreativeWP
Forum Replies Created
-
Forum: Plugins
In reply to: [Crafty Social Buttons] Counter on Social Networks do not displaySee this page, and you will see the social media is not working, and yes, I turned off the minifications.
https://tools.pingdom.com/fpt/#!/cR2ab6/https://tradingplanets.com/
Thanks,
Forum: Plugins
In reply to: [Crafty Social Buttons] For speed sake add width and height choicesThanks, I noticed it. Great job.
Forum: Plugins
In reply to: [WooCommerce] admin-ajax.php slow server response timeDid anyone find a solution?
I tried this:
add_action( ‘init’, ‘my_deregister_heartbeat’, 1 );
function my_deregister_heartbeat() {
global $pagenow;if ( ‘post.php’ != $pagenow && ‘post-new.php’ != $pagenow )
wp_deregister_script(‘heartbeat’);
}Did not work! ??
Forum: Fixing WordPress
In reply to: Different frontpage after loginThanks, I solved like this:
[ Moderator note: Code block fixed. Don’t use blockquote it breaks the code formatting. ]
<?php /** * Plugin Name: Logged in home redirect * Plugin URI: https://premium.wpmudev.org/forums/topic/redirect-homepage-to-another-for-logged-in-users * Description: Redirect logged in user's home page * Version: 1.0 * Author: Your Name Here! * Author URI: https://premium.wpmudev.org/forums * License: GPL2 */ function logged_in_home_redirect() { if( is_user_logged_in() && is_front_page() ) { wp_redirect( 'https://www.redminka.com/publicaciones' ); exit(); } } add_action( 'template_redirect', 'logged_in_home_redirect' ); ?>
Forum: Fixing WordPress
In reply to: Different frontpage after loginI am already using theme-my-login, but that is only to redirect you after login. I want to have a front page for people who have not logged in, and another from page for those who login.
I thought Peter’s login would do it, but not. hmmm
That means, that my website is
https://mywebsite.com for all users.
https://mywebsite.com/logedin for those who login. EVEN if I click on the home page, to get redirected to that for registered users. I could hide the fact that is a second page (by name), but the second page has features that the first one did not.
Thanks,
Forum: Fixing WordPress
In reply to: Different frontpage after loginI am thinking to use Peter’s Login Redirect.
Forum: Fixing WordPress
In reply to: Different frontpage after loginThemeforest. https://terso.themeva.com/
I am looking for a php code.
Forum: Plugins
In reply to: Membership Website with Woocommerce (responsive theme)Hi David, I have seen the website in many browsers, and I have never seen that. Do you think you can make a screenshot to see it. Please.
About the Javascript, I wish I could limit it, but clients want what they want it. This is as minimal as I could push it ha ha.
Thanks,