Tami
Forum Replies Created
-
Forum: Plugins
In reply to: [Genesis Simple Sidebars] Can no longer access Simple SidebarsI deleted the line:
function ss_activation_check() { if ( ! defined( 'PARENT_THEME_VERSION' ) || ! version_compare( PARENT_THEME_VERSION, '2.0.0', '>=' ) ) ss_deactivate( '2.0.0', '3.6' ); }
and the sidebars are active again. Still curious if an update will be issues for 3.8. Thanks.
Forum: Plugins
In reply to: [Genesis Simple Sidebars] Can no longer access Simple Sidebars“The devs aren’t going to be able to fix this (or even look at it) for a week or two.” It’s been 2 weeks. Any luck? I am experiencing the same problem since updating to 3.8. Plugin will no longer activate on a website I’ve been running for 2 years. My sidebars are no longer available.
Thanks Terry. The buttons do show up now. But another little thing. When you click on “like” and the comment/post window pops up it is cut off on the right hand side in line with my content box whereas on other websites I see the comments box floats in front not clipped by the page settings underneath. How can I change those settings? I posted 2 screengrabs as examples so you can see what I mean:
(https://www.dovestar.ca/WIP/example.html)You can view my live page at:
(https://www.warpandweft.ca/shop/sew-stitchy-518544-11/)Thanks!
Hi, I installed the plugin and nothing appears on my product pages either. I noticed in the code the following:
<body class="plugin ff4 mac Locale_en_GB"> <div id="FB_HiddenContainer" style="position:absolute; top:-10000px; width:0px; height:0px;"></div>
Should the width and height be changed somewhere?
One of my pages. https://www.warpandweft.ca/shop/seven-wonders-leivalley/
Thanks.
Forum: Fixing WordPress
In reply to: Setting up a dual language website@keesiemeijer
I can’t access the 2 sub-sites. I get the 404 error when I click on dashboard, new post, etc. I have been going through forums trying to sort that out but in the meantime was contemplating other routes as I’m not sure the multisite will be the solution anyway. Unless, I can select separate custom menus for the primary navigation.I did check out both plugins (not in action site as my site’s not working) but I don’t really need translation. I have all the content already built. What I’d love is to simply have one custom menu (eng) load when it is an English page and the other menu (fre) to load on the French pages. I was thinking I could do that by somehow registering a custom navigation that contingent on some value (as esmi suggested).
Initially, I did try the separate installs but that didn’t seem to work either. I have to manually install via ftp, couldn’t run the installation script and the host doesn’t think I can do that with the one database. They are not wordpress savvy at all and basically said it can’t be done.
Sorry so wordy.
Forum: Networking WordPress
In reply to: Is multisite a good option for 2 language web site?Yes, this is the current .htaccess
# BEGIN WordPress RewriteEngine On RewriteBase / RewriteRule ^index\\.php$ - [L] # uploaded files RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L] # add a trailing slash to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) $2 [L] RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\\.php)$ $2 [L] RewriteRule . index.php [L] # END WordPress
I can access the network admin but I get the 404 message when I try to access the dashboard of either sub-sites.
I should reiterate this was a functioning wp site when it was only one language and then I attempted to set up the multisite. I didn’t do a fresh install but have followed the steps to activate multisite. Should I have deleted everything and started from scratch??
Forum: Fixing WordPress
In reply to: Setting up a dual language websiteHi, if I may chime back in here, I have to say I am very grateful of the help that is offered through forums such as this. I have a certain understanding of web code but often need guidance and clarification when working on projects.
I had gone through a lot of the various options first mentioned above and they didn’t quite suit my needs (which are similar to Chris). I did go through setting up a multisite network but it does seem there should be a more straight forward way. I appreciate your candid answer to my question but I saw a thread regarding menus for logged in users or general public where the primary menu is different depending whether you are logged in or not.
See response given to that situation:
<?php if ( is_user_logged_in() ) {
wp_nav_menu(array( ‘container’ => ”,
‘menu_class’ => ‘member-menu’,
‘menu’ => ‘Members’)
);Is there a way to possibly indicate language specific pages, something like (I just made this up randomly):
<?php if ( page-id() ) {
wp_nav_menu(array( ‘container’ => ”,
‘menu_class’ => ‘english-menu’,
‘menu’ => ‘English’)
);Thanks!
Forum: Fixing WordPress
In reply to: Setting up a dual language websiteHi Chris, I am experiencing the same problem myself.
Ideally, I would like to know if it is possible to assign 2 different custom menus to the primary location (using the menus function).
To answer 3) It is possible to install WP twice into different folders but depending on how you do it you will either have 2 separate installs with 2 separate admin logins or you can do a multi-site install. I have attempted the multi-site install with one super admin but am encountering problems and frankly solving the custom navigation seems to be an easier solution – if possible.
Anyone?
Forum: Fixing WordPress
In reply to: Want Primary Navigation to Change on Registered user Only PagesI have a related but not exactly the same question. I have a genesis child themed site that has both English and French pages. I would like an English menu to be in the Primary Menu location when on English pages and French on the French. Under “menus” I can only chose one menu to appear (obviously) but is it possible to have 2 registered menus to the same location and have them page specific?