78juli
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: no longer able to edit menu itemsHi @lordsnake
Try this in your child theme’s functions.php:
function my_custom_scripts() { wp_dequeue_script( 'customjs' ); wp_deregister_script( 'customjs' ); wp_enqueue_script( 'customjs', get_stylesheet_directory_uri() .'/js/customjs.js', array( 'jquery' ), '1.0' ); } add_action( 'wp_enqueue_scripts', 'my_custom_scripts' );Forum: Fixing WordPress
In reply to: Unable to find and edit HomepageIf you search ‘SEO’ on wordpress.org/plugins
You’ll see the available SEO plugins and how the users rated them. I’m sure you’ll find the best fit to your needs there.- This reply was modified 9 years ago by 78juli.
Forum: Fixing WordPress
In reply to: no longer able to edit menu itemsI’m glad you figured out where the problem lies. Did you manage to get it sorted then?
There is some information on the correct use of wp_enqueue_script:
https://codex.wordpress.org/Plugin_API/Action_Reference/wp_enqueue_scriptsForum: Fixing WordPress
In reply to: Unable to find and edit HomepageHi there
1. Can you access the WordPress admin dashboard? Here is the link to the login page on your site:
http://www.sacredjourneyperu.com/wp-admin/
2. If you can, then as soon as you’re logged in you’ll be able to edit your Website. I’d suggest using a SEO plugin to edit the meta description of your website. You can Install plugins under the Plugins menu point.
3. If you can log in but you’re not an admin or if you don’t have the admin login details at all then here is another way to gain access to your site. You’ll need to be able to access your WordPress database on your hosting.
Let me know if this helped or if you need any more help!
Forum: Fixing WordPress
In reply to: no longer able to edit menu itemsHi lordsnake
Did you install any updates since the menu editing feature worked last time?
Have you tried to update or manually reinstall WordPress?
You can choose to ‘reinstall Now’ under Dashboard > Updates.
Let me know how you’re getting on.