Santiago
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Bulk Password Page ProtectionHi @altere987
This plugin is a very good alternative to achieve what you need: https://es.wordpress.org/plugins/groups/It allows to create access “groups”, and to protect pages and other content to be accesible only to some specific group.
Then you can add or remove users to those groups.It’s a powerful and flexible permission system.
Hope it helps π
Forum: Fixing WordPress
In reply to: Can’t insert link on the footerHi @kleinermuk
I see the link in the footer and it works just fine. Am I missing something here?
Forum: Fixing WordPress
In reply to: .htaccess redirect codeHi @nightdark,
I’m curious on why a php solution wouldn’t fit your needs.That said, you can try the following:
RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule .* index.php [R=301]Found here:
https://stackoverflow.com/questions/12237579/how-to-use-errordocument-404-with-301-in-headerHope this helps.
CheersForum: Fixing WordPress
In reply to: Someone is seriously trying to hack my siteHi @ranyam ,
It might be a good idea to block the IP address for those requests.
There are several plugins out there that provides such functionality.You can also change your login form url to something not default.
Hope this helps.
Take care!Forum: Fixing WordPress
In reply to: Cant edit any page contentHi @korona123 ,
Sorry for the late response.
Have you sorted this out?I haven’t used hotmail before with this plugins, so I’m not sure if there is something else to configure.
I found this plugins that seems to be specific to hotmail: https://wordpress.org/plugins/wp-hotmail-smtp/
Maybe you want to give it a try.Take care!
Forum: Fixing WordPress
In reply to: Populating URL with dynamic user informationHey @amateurhr
I don’t have time to adapt the code right now, but you should be able to adapt it to use this hook: https://codex.wordpress.org/Plugin_API/Filter_Reference/registration_redirectForum: Fixing WordPress
In reply to: Populating URL with dynamic user informationHi @amateurhr
I don’t know which plugin you are using to set the redirect. How to inject dynamic data to the redirect url will depend on the plugin, allways assuming that it has some sort of support for it.Alternatively, you can use a small custom code in your theme functions.php file to redirect users immediately after the login.
I made this snippet for you:function my_allowed_redirect_hosts($content){ $content[] = 'example.com'; return $content; } add_filter( 'allowed_redirect_hosts' , 'my_allowed_redirect_hosts' , 10 ); function my_login_redirect( $redirect_to, $request, $user ) { //is there a user to check? if (!empty($user->data)) { $user_first_name = get_user_meta($user->ID, 'first_name', true); $user_last_name = get_user_meta($user->ID, 'last_name', true); $url_parameters = array( 'name' => $user_first_name, 'email' => $user->data->user_email, 'last_name' => $user_last_name, ); $base_redirect_url = 'http://example.com/waitlist/'; $redirect_to = add_query_arg( $url_parameters, $base_redirect_url ); /*var_dump($redirect_to); die();*/ } return $redirect_to; } add_filter( 'login_redirect', 'my_login_redirect', 20, 3 );Paste it inside functions.php and disable the redirect plugin that you are using.
Let me know if that works for you.
Take careForum: Fixing WordPress
In reply to: Cant edit any page contentIf I understand correctly, you say that the forms are submitted just fine, you got the records in Flamingo, but you never received the email.
In that case, I would say that you have an issue with outgoing emails for the entire site.
Your hosting is probably blocking outgoing emails, this is quite common in shared hostings.
You should try an SMTP email plugin like https://wordpress.org/plugins/easy-wp-smtp/ or similar.
Once you have that configured you can send a test email. If you receive the test email, then you are ready to test your contact form again.Keep me posted. Good luck!
Forum: Fixing WordPress
In reply to: Cant edit any page contentHi again. This looks like a plugin conflict.
The edit screen looks weird, so I suspect you may have an issue with the new Gutenberg editor. That would explain why this stopped wroking suddently, since Gutenberg was included in WP Core in latest versions.Here my suggestions:
1- Try installin the Classic Editor plugin. Once you activate it, Gutenberg will be disabled and the classic editor will be loaded instead. https://wordpress.org/plugins/classic-editor/2- Try running a plugin confict test. Here you can find a good tutorial on how to do it https://kb.yoast.com/kb/how-to-check-for-plugin-conflicts/#plugin
Hope this helps.
Take careForum: Fixing WordPress
In reply to: Cant edit any page contentHi again @korona123
You can use https://imgur.com/upload or some other image upload service to share the picture with me.
Just upload it and paste the link here.Forum: Fixing WordPress
In reply to: Title TagHi @inspirationalnectar
I can see that your site is picking the Erica Statly title for all pages except the home page.
I assume that you have set the title in the options here /wp-admin/options-general.phpIf so, there are two possible causes that comes to my mind right now:
1- Strong page cache in your server. (this should reflect the changes after a while).
2- You have a plugin or theme overwriting the title meta tag. This is very common for SEO plugins like YOAST or similar. They provide an option to set specific titles to each pages.If you are using a plugin like this, you should check the general settings for the plugin and the specific settings for the page that you are using as home page.Hope this helps!
Hi @akasa1965
Hope you are doing great.I can see you are making a mistake with the name of your handler:
Your method is called “html5blankstablechild_scripts” and your hook is setting the callback to “html5blank-stable-child_scripts”Changing it to this should solve the problem:
add_action( ‘wp_enqueue_scripts’, ‘html5blankstablechild_scripts’ );Please let me know if that works.
Cheers- This reply was modified 7 years, 5 months ago by Santiago.
Forum: Fixing WordPress
In reply to: Cant edit any page contentHi @korona123
You have a weird issue there.
Are you using a page builder to create your pages?
The problem occurs only when trying to edit the pages in the dashboard? are the pages showing right in the front end?Forum: Fixing WordPress
In reply to: putting google adsense code in header tagsHi there @macgig
Hope you are doing well.
While you could create a child theme and edit your header.php template file, there is a much easier approach: you can use a plugin like HFCM or similar (there are several similar plugin in the plugin directory).
This plugin allows you to inject code snippets either in header, body or footer and you can decide if it should be included in all pages, specific pages, specific content types, etc.Please let me know if that works for you.
Take care.Forum: Developing with WordPress
In reply to: the_content doesn’t display when loaded with AJAXHi @mercworks,
Hope you are doing well.I just took a look at your site and I see that the ajax call is working. Were you able to fix it?
What I did notice is that only the first ajax call is returning data. The following calls are returning empty simply because there is no more content.
I tried changing the page size to something smaller than 9 and I confirmed that ajax requests for page next pages returned data just fine.Please let me know if you still think there is an issue.
Take care!