Dan Farrow - moved to @danfarrow
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can't get javascript to work (Visual Composer)hi there,
First rule of JavaScript debugging is to check your browser’s error console where you will see:TypeError: $ is not a function
This is because WordPress uses JQuery in no-conflict mode – if you replace every
$
in your code withjQuery
you may find it works.Dan
Forum: Fixing WordPress
In reply to: Fatal Error: Cannot redeclare classIf you don’t need the theme later you could just delete it.
The error message says that the file
theme-shortcodes.php
in the Gauge theme is redeclaring a classWPBakeryShortCode_Testimonial
which has already been declared elsewhere – it’s probably just a bug in that particular theme.Forum: Hacks
In reply to: Can editing functions.php of a child theme do everything?Forum: Fixing WordPress
In reply to: Fatal Error: Cannot redeclare classhi there,
If you have FTP or Control Panel access to your server you could temporarily move the Gauge theme directory to another location which will force WordPress to use another theme.
DanForum: Fixing WordPress
In reply to: How to arrange alignment in checkout pageGlad to hear it! You’re welcome
Forum: Fixing WordPress
In reply to: Problem after upgrade – cannot get to dashboardDid you rename
.htaccess
to something likeold.htaccess
then reloadyoursite.com/wp-admin
?If so and that didn’t help you could try logging in with a different browser, or in a private window.
Beyond that I’m not sure of the cause I’m afraid.
Forum: Fixing WordPress
In reply to: Problem after upgrade – cannot get to dashboardhi Les,
Are you renaming the right .htaccess file? It should be in the root WordPress directory i.e. the same directory aswp-config.php
etc.
DanForum: Fixing WordPress
In reply to: Problem after upgrade – cannot get to dashboardGreat, glad to have helped
Forum: Fixing WordPress
In reply to: Fatal error after the automatic upgrade to 4.1.1You should be able to get this information from the company that hosts your website
Forum: Fixing WordPress
In reply to: Fatal error after the automatic upgrade to 4.1.1hi there, your theme files may have got corrupted.
If you have an FTP or Control Panel login for your server you could try temporarily moving the twentyeleven theme folder to another location (rather than deleting it – you might have some custom changes in there that you want to keep).
This will force WordPress to use a different theme and maybe you can then re-install twentyeleven.
Dan
Forum: Fixing WordPress
In reply to: Archive pages not working on home page.hi there,
The pagination is working for me. Maybe clear your browser cache, or try looking in a different browser?
DanForum: Fixing WordPress
In reply to: Problem after upgrade – cannot get to dashboardhi there,
If you have either an FTP or Control Panel login for your hosting server you could try renaming the.htaccess
file in your site’s WordPress directory.Renaming it to
OLD.htaccess
, for example, will temporarily disable it and may allow you to login.Dan
Forum: Fixing WordPress
In reply to: how to move custom post type to a new themehi Tom, custom post types can be defined in the theme’s
functions.php
file. If you search for ‘library’ & ‘practitioner’ infunctions.php
you may be able to find & copy the appropriate functions to your new theme’sfunctions.php
.Templates to display the custom post types can be included in the theme’s files, but there are various ways this can be done. Look for files that include ‘library’ and ‘practitioner’ and copy them to your new theme’s directory.
It’s unlikely it’ll be as simple as that but this should get you started!
DanForum: Fixing WordPress
In reply to: This webpage has a redirect loopAh I see. Do you have an FTP login to the server? Or a login for the server’s Control Panel? You could use either to edit the .htaccess file.
Forum: Fixing WordPress
In reply to: This webpage has a redirect loophi there, can you undo the change you made?
How did you edit .htaccess?