gotgotf
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Responsive Image Map removes scrollbars!not enough
Forum: Fixing WordPress
In reply to: How to remove the slash after author name.entry-date {
display: none !important;
}or
span.entry-date {
display: none !important;
}or
p.p-meta span.entry-date {
display: none !important;
}or
Forum: Fixing WordPress
In reply to: 401 error when clicking on any uploaded mediaurl web site ?
Forum: Fixing WordPress
In reply to: Responsive Image Map removes scrollbars!Your are an erreur Javascript in your page :
https://www.tomjackson.photography/world-map-v2/
This error break javascript.
But, you use nicescroll, maybe juste add :
Style.css ligne 12903
html.nicescroll {
overflow: visible !important;
padding-right: 0 !important;
}After, resolve your javascript error, better solution.
Nice site !Forum: Fixing WordPress
In reply to: Uninstalled WordPress and still can't access anything elseIn your FTP, Delete all folder wordpress.
After, in your phpmyadmin, delete your data base.Forum: Fixing WordPress
In reply to: Removing headers and footers in TetrisWhat is your url ?
Forum: Fixing WordPress
In reply to: Removing headers and footers in Tetris#header {
position: absolute;
visibility: hidden;
}#footer-wrap{
position: absolute;
visibility: hidden;
}Forum: Fixing WordPress
In reply to: You do not have sufficient permissions to access this pageurl ?
Forum: Fixing WordPress
In reply to: cant access my website as adminForum: Fixing WordPress
In reply to: Link to PDF File Not WorkingOk, in some themes, you can mention the css class you want to exclude from ajax.
If possible, just add a class to your pdf link and exclude it from the ajax.Forum: Fixing WordPress
In reply to: Link to PDF File Not WorkingWhat is your plugin for ajax load page ?
Forum: Fixing WordPress
In reply to: Slider not workingReplace this
function() {jQuery(“body”).addClass(“gcmessagebar”);var date = new Date();
date.setTime(date.getTime() + 86400000);
if (jQuery.cookie(“gc_message_bar_cookie”) ) {
jQuery.cookie(“gc_message_bar_cookie”, null) ;
}
jQuery.cookie(“gc_message_bar_cookie”, “opened”, { expires: date });
}
by
function() {jQuery(“body”).addClass(“gcmessagebar”);var date = new Date();
date.setTime(date.getTime() + 86400000);
//if (jQuery.cookie(“gc_message_bar_cookie”) ) {
// jQuery.cookie(“gc_message_bar_cookie”, null) ;
//}
//jQuery.cookie(“gc_message_bar_cookie”, “opened”, { expires: date });}
Forum: Fixing WordPress
In reply to: Slider not workingFirst, you can remove the call to this function
Forum: Fixing WordPress
In reply to: Link to PDF File Not WorkingYou use ajax plugin to load page ?
Disable your javascript, and test, for me, it is OK.Forum: Fixing WordPress
In reply to: Slider not workingYou have an error javascript :
jQuery.cookie is not a function.
I think that this error break your slider.