amcmasters
Forum Replies Created
-
Forum: Plugins
In reply to: [Tabby Responsive Tabs] Shortcode doesn't create tabs (need help)I tried putting the jquery call in the header and in a functions.php file with the following code
// smart jquery inclusion
if (!is_admin()) {
wp_deregister_script(‘jquery’);
wp_register_script(‘jquery’, (“https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js”), false);
wp_enqueue_script(‘jquery’);
}Still working…
Forum: Plugins
In reply to: [Tabby Responsive Tabs] Shortcode doesn't create tabs (need help)Better, console tells me the site https://www.ryerestaurant.com/rye/tab-test/
ReferenceError: Can’t find variable: jQuery
so maybe I need to install or fix the path for the $ (jquery?) library?
Forum: Plugins
In reply to: [Tabby Responsive Tabs] Shortcode doesn't create tabs (need help)I will try the nuke tonight.
Forum: Plugins
In reply to: [Tabby Responsive Tabs] Shortcode doesn't create tabs (need help)YEs it is active – I deactivated any weird plugins to no effect…
It may be a path/permission problem?
thanks for your help.Forum: Plugins
In reply to: [Videopack] Firefox/browser issuesYou are right, I need to expand my understanding of the wordpress template/loop system to fix this (looking in the “edit themes” section of wp-admin is trial and error…
I have used ffmpeg for encoding, love the whole “datamoshing” thing where you edit keyframes to create glitches…
Forum: Fixing WordPress
In reply to: Page missing/won't delete entirelyYes, the client’s page is on godaddy, and I migrated the install (over the “one click” install) to a sub-folder in their root drectory /rye I had some permissions problems when I uploaded it from my local folder, which caused a white screen.
The home and siteurl entries in the wp_options table are https://www.ryerestaurant.com/rye
The .htacess files are as follows:
/rye# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /rye/
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /rye/index.php [L]
</IfModule>and the .htaccess file inside the root folder:
rewriteengine on
rewritecond %{HTTP_HOST} ^www.ryerestaurant.com$ [OR]
rewritecond %{HTTP_HOST} ^ryerestaurant.com$
rewriterule ^(.*)$ “http\:\/\/ryerestaurant\.com\/rye$1” [R=301,L]
#5273e76b8490eForum: Fixing WordPress
In reply to: Page missing/won't delete entirelyThanks, I am still troubleshooting – if I go to default permalinks I get the same problem I am having with the single IMAGES page (see below) otherwise everything works. Do I need to edit the page id #s?
This is my list:
HOME [front-page template] https://www.ryerestaurant.com/rye/
IMAGES [default template]
infinite redirect unless child of (home) – then page not found message.ABOUT [default template] https://www.ryerestaurant.com/rye/about/
BLOG [default template] https://www.ryerestaurant.com/rye/blog/
PRESS [default template] https://www.ryerestaurant.com/rye/press/
MENUS [default template] https://www.ryerestaurant.com/rye/menus/DIRECTIONS https://www.ryerestaurant.com/rye/directions/
RESERVATIONS https://www.ryerestaurant.com/rye/reservations/There are two nav.php files, nav.php and nav2.php respectively that are included in my theme (not totally necessary, more to keep them in inline/place).
Forum: Fixing WordPress
In reply to: Page missing/won't delete entirelyThanks, I did empty the Trash. I understand there is a “page slug” – I’m wondering if there is a table data entry where the page persists? Or could there be a more pernicious error hard coded into the child theme that isn’t playing nice.