Dave Naylor
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Unwanted space on home pageYour site uses a sticky footer, which means what it sounds like, the footer will always be at the bottom. Since you don’t have that much content, that’s the reason for the large void.
I had to work my way round your no right click script which makes debugging slightly more difficult and actually serves limited purpose these days anyway. Everyone knows how to get round it 🙂
Forum: Fixing WordPress
In reply to: A word does not allow postingI can create a post containing that string. Is it actually a real word? Do you have some form of spell checking plugin or anything that interacts with the post editor.
The only way to narrow things down is to revert to the default theme and turn off all plugins, turning then on one by one to see what happens.
Forum: Fixing WordPress
In reply to: Remove "You may use these HTML tags…" from commentsIf you want to permanently remove it rather than just hide it, put this in your theme’s functions.php file:
add_filter( 'comment_form_defaults', 'remove_comment_form_allowed_tags' ); function remove_comment_form_allowed_tags( $defaults ) { $defaults['comment_notes_after'] = ''; return $defaults; }Forum: Fixing WordPress
In reply to: Cannot access WordPress dashboardI’d suggest opening a support ticket with Hostgator.
Forum: Fixing WordPress
In reply to: Flexislide gone wrong!The link to the flexislider CSS file is wrong. It should be:
http://wp.visuelt.as/wp-content/themes/Visuelt2014/slider/css/flexslider.cssForum: Fixing WordPress
In reply to: A word does not allow postingWhat happens if you use the text editor rather than the visual editor?
Forum: Fixing WordPress
In reply to: 403 Forbidden error Locked out from wp-admin and website gone.No problem. Glad you got things running again.
Forum: Fixing WordPress
In reply to: Scroll Reveal.jsYou may have to provide the correct path for this:
<script src="<PATH TO>/js/scrollReveal.js"></script>Forum: Fixing WordPress
In reply to: 403 Forbidden error Locked out from wp-admin and website gone.Do it one by one until it falls over again. That way you’ll identify the culprit.
Forum: Fixing WordPress
In reply to: Scroll Reveal.jsThis code:
//* Enqueue ScrollReveal.js add_action( 'wp_enqueue_scripts', 'enqueue_scrollreveal' ); function enqueue_scrollreveal() { wp_enqueue_script( 'scrollreveal', get_stylesheet_directory_uri() . '/js/scrollReveal.js', array( 'jquery' ), '', true ); }… should be removed from wherever you put it and placed in the functions.php file of your theme.
I think you could make use of something like this plugin:
https://wordpress.org/plugins/oh-add-script-header-footer/
to ensure this:
<script src="js/scrollReveal.js"></script>is properly added to your footer.
You then need to add the markup in your template/page to get things working.
Forum: Fixing WordPress
In reply to: Scroll Reveal.js@jose Castaneda
Scroll down to the bottom, you’ll see it.
Forum: Fixing WordPress
In reply to: 403 Forbidden error Locked out from wp-admin and website gone.Hmmm. I love cPanel. Not.
OK, are you able to use FTP? FileZilla is a fairly good client. Visit your site via FTP and do two things, delete the .htaccess file again and then visit wp-content/ directory and rename plugins/ to pluginsHOLD/
Let’s see where we get to then.
Forum: Fixing WordPress
In reply to: 403 Forbidden error Locked out from wp-admin and website gone.There seems to be a complete blanket denial of anything at your site at the moment. I can’t reach anything.
When you say you dragged the plugin to trash and deleted the .htaccess file, where is the trash, on your local machine? How did you delete the .htaccess file? By FTP?
Forum: Fixing WordPress
In reply to: Scroll Reveal.jsNo. According to the page you linked to, that should be inserted in your page, just before the
</body>tag. You could make use of wp_footer for that.Put the PHP code in your functions file and then add the HTML markup in your template.
Forum: Fixing WordPress
In reply to: Cannot access WordPress dashboardYour domain is happily arriving at Hostgator, and the Hostgator servers are happy to receive it but you didn’t tell them what to do with it. So, in your Hostgator hosting acount, there will be a place where you can set up domains. I don’t use Hostgator but it’s probably something like cPanel.
Here’s a link to a help video from Hostgator:
http://www.hostgator.com/tutorials/cpanel/hgx3/setting-up-an-addon-domain.htm