aehernandez
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Exclude categoryThank you @ikaring
Forum: Fixing WordPress
In reply to: Update gone wrongThank you @jnashhawkins!
I just renamed the plugins, but after restoring the file’s name it is still showing me the download dialog in all of the wp-admin control options.
The PHP version I switched to is 5.6
Forum: Fixing WordPress
In reply to: Update gone wrongThank you for your suggestion @jnashhawkins !
I took a closer look to my bluehost options and was able to restore the site by changing the php version to the required one of the update.
I’ve been able to restore my themes, except for the plugins, where it opens the download dialog with the plugins.php file when I try to access this section from the wp-admin.
Any suggestions for this issue? Thank you in advance!
Forum: Fixing WordPress
In reply to: Update gone wrongThank you for responding, @bwstandard. I thought the same thing, but the directory does include the wp-blog-header.php.
@t-p, the last error in the log is:
PHP Deprecated: Comments starting with ‘#’ are deprecated in ./fastphp.ini on line 18 in Unknown on line 0Forum: Fixing WordPress
In reply to: Update gone wrongHi! Thank you for responding @t-p
I just renamed the directory of the theme, but unfortunately it’s still not giving me access to any part of my site and when trying to load, it throws me the file with the php code I wrote about before.
Forum: Fixing WordPress
In reply to: Featured image to RSS FeedThank you @jnashhawkins and @bcworkz. I managed to resolve it by updating Wp_Config of my site with the absolute URL.
Forum: Fixing WordPress
In reply to: JSON in Root@sterndata mydomain.com/manifest.json
Forum: Fixing WordPress
In reply to: Send custom user meta to ZapierThank you for the info @thatwpdude! I’ll check it out
Forum: Plugins
In reply to: [Yoast SEO] Blank page with latest update@devnihil I went back to version 10.1.3 and my site is working again.
- This reply was modified 5 years, 7 months ago by aehernandez.
- This reply was modified 5 years, 7 months ago by aehernandez.
Forum: Plugins
In reply to: [Yoast SEO] Blank page with latest updateHi @amboutwe
I actually deactivated Yoast and my site was up again. It definitely is the plugin.
Forum: Fixing WordPress
In reply to: Change login URL@joyously I tried using WPS-Hide-Login, but it disables user registration.
Forum: Fixing WordPress
In reply to: JSON in RootI get this message when I try to access the file by typing the address.
Forum: Fixing WordPress
In reply to: Send custom user meta to ZapierHello @andywillers !
Sorry for the late reply. Yes, I managed to send the custom info by copying the data to one of the default fields that appear in Zapier. This is my code:
add_action( 'user_register', 'my_save_extra_fields', 10, 1 ); function my_save_extra_fields( $user_id ) { $user = get_userdata( $user_id ); $interes = $user->ep_interes; $user_data = wp_update_user( array( 'ID' => $user_id, 'description' => $interes ) ); if ( isset( $_POST['description'] ) ) update_user_meta($user_id, 'description', $_POST['description']); }
Forum: Plugins
In reply to: [Featured Images in RSS for Mailchimp & More] Featured image to RSS FeedThanks! I updated the WP_CONTENT_URL in wp-config to enable the correct URL.
Forum: Fixing WordPress
In reply to: Update Description via PHPNevermind, @priyankabehera155. Thank you for your help!
Managed to do it like this:
add_action( 'user_register', 'my_save_extra_fields', 10, 1 ); function my_save_extra_fields( $user_id ) { $user = get_userdata( $user_id ); $interes = $user->ep_interes; $user_data = wp_update_user( array( 'ID' => $user_id, 'description' => $interes ) ); if ( isset( $_POST['description'] ) ) update_user_meta($user_id, 'description', $_POST['description']); }