onceuponajrny
Forum Replies Created
-
Hi Munir! Sorry for my late reply but YES, thank you so much for your patience and assistance. It’s fixed!
Okay, this time I lost all my customizations on the front end also after downgrading again. It’s getting a little annoying. I’m happy to create a login for you so you can check?
Hi, yes I do. I tried making new reusable blocks but same thing.
Hi Munir, yes I did. It’s not fixed, I reverted to the older version again.
Hi Munir, I just updated and same thing happened. I now have to redo all the reusable blocks again.
Hi Munir! Is the bug fixed in version 2.9.2? Or shall I wait for a new version?
Thank you for the quick reply and action!
Yes, before the update, I had no problems using reusable blocks. The update erased the customizations in the front end. When I convert to normal blocks, I see the customizations.
These were only customizations to the border, box shadow, and padding of reusable column-blocks.
Forum: Themes and Templates
In reply to: [Neve] Menu buttons not working (sub menu) on mobileHi! Yeah, someone on Stackoverflow helped me. This was the fix:
After you click to open submenu on mobile, some div with class “.nav-clickaway-overlay” shows up. Just add this in your style.css
.nav-clickaway-overlay { z-index: 0 !important; }
Forum: Themes and Templates
In reply to: [Neve] Menu buttons not working (sub menu) on mobileUPDATE: when the menu is expanded, none of the menu items are clickable.
Forum: Plugins
In reply to: [Polylang] Search bar doesn’t display after Polylang updateYES! Thank you!!
- This reply was modified 3 years, 8 months ago by onceuponajrny.
Forum: Plugins
In reply to: [Polylang] Search bar doesn’t display after Polylang updateAs a temp fix I have installed another search bar but I prefer to use the standard search bar!
Forum: Plugins
In reply to: [WooCommerce] Mobile product page displays 48% (big white space on the right)FIXED! Code I used:
.single-product div.first {
width: 100%;
}actually, 95% looks better on the right.
Forum: Networking WordPress
In reply to: Multisite ‘category’ exclude url 404I suspect the changes were made by the rules I added in wp-config.php and .htaccess file when I setup my multisite. I’d love to hear if there is a rule that I can change that will fix this.
define(‘MULTISITE’, true);
define(‘SUBDOMAIN_INSTALL’, false);
define(‘DOMAIN_CURRENT_SITE’, ‘onceuponajrny.com’);
define(‘PATH_CURRENT_SITE’, ‘/’);
define(‘SITE_ID_CURRENT_SITE’, 1);
define(‘BLOG_ID_CURRENT_SITE’, 1);RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [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]