RBX
Forum Replies Created
-
Forum: Plugins
In reply to: [WC Fields Factory] Few IssuesI switch Display on Cart & Checkout to No but upon save the value to Yes.
Sorry, I mistakenly skipped a few words: I switch Display on Cart & Checkout to No but upon save the value is reverted to Yes.
I installed it the day I posted, so I guess I had the latest version.
I too have this problem.
I’ve found the culprit – lack of memory.
The pages started appearing blank instead of giving 500 error after enabling WebP rewriting, so I suspected lack of memory and that was it.
There is conflict with LayerSlider though, the animations of layers containing images has been disabled and I have been unable to make it work even after allocating quite large memory chunk – perhaps this should go in a separate thread.
This might also be because of some conflict with iThemes security plugin. I’ll report here after investigating it.
Forum: Fixing WordPress
In reply to: Password Protect wp-login.phpI don’t want to password protect the directory, just the wp-login.php and the method prescribed in the first link is the one I’ve followed.
Forum: Plugins
In reply to: [EWWW Image Optimizer] Alternate WebP rewriting breaks secondary menuI just checked HTML and there are quite some errors in menu code. I guess the Envato’s quality check is done just on initial version and not on subsequent updates.
Forum: Plugins
In reply to: [WP Job Manager] Front end image upload not attachedI too have this problem, and from what I can see, this only happens for guest submissions. I have added more file upload fields (not just featured image), and their data data isn’t saved when a guest submits from front end.
Forum: Fixing WordPress
In reply to: Prevent Site HacksCan one vulnerable site on server cause other sites to be hacked?
We have several sites on same server, and these days I ensure proper security on new sites right from start to avoid possibility of malware creeping into backups.
My sites are still getting hacked, and all of them get hacked around the same time. I have enabled file change detection on several of them, and no changes seem to be made to files. Just all usernames are renamed to admin and passwords probably to admin123.
Forum: Plugins
In reply to: [Contact Form 7] Unable to Submit on FirefoxStill looking for a solution.
Forum: Fixing WordPress
In reply to: Prevent Site HacksWhat do you think about exec() ability? I once enabled it to use EWWW image optimizer. Does it, or any other similar feature pose a risk?
Forum: Fixing WordPress
In reply to: Prevent Site HacksI have only a faint idea of what you mean by vector.
I followed the guide, and have already once tried replacing my whole installation with a ~ 2 week old backup, and have changed salts since then, and have done a lot of other things suggested by iThemes Security plugin.
Since I didn’t scan my database then, only removed what seemed out of place, I tried scanning for any injected code using this mentioned here
SELECT * FROM wp_posts WHERE post_content LIKE '%<iframe%' UNION SELECT * FROM wp_posts WHERE post_content LIKE '%<noscript%' UNION SELECT * FROM wp_posts WHERE post_content LIKE '%display:%'and didn’t find anything.
The first time I was hacked, the hackers had uploaded a file named ws.php with obfuscated code. I let the file be there, made it empty and read only.
I have also tried removing insert/update access to wp_users table using phpmyadmin but didn’t succeed. I will now look into OSSEC, and will also scan my system using a good antivirus, though I’m quite sure my system is clean.
Forum: Fixing WordPress
In reply to: Plain LinkIf you don’t want to display About Us page, simply create a custom link and add it to your Menu. Place anything in the URL field initially, but once it’s been added to the menu, make it blank. The item would then won’t point to anything.
Forum: Themes and Templates
In reply to: [Virtue] Custom Bootstrap MenuThankyou for offering such great level of support even on free version of your theme. I’d definitely purchase your premium themes once I start making some money. And it would be great if you provide bootstrap menu widgets in them.
The design has a left sidebar with a list containing 50+ links, making it a menu seems most logical. Maybe I should make it a submenu of mobile navigation menu.
Irrelevant babbling:
The website I’m working on is a replication of a previously made – poorly designed and unresponsive site, with two sidebars each containing multiple menus with plethora of items. Given how unhappy I’m about it, I’m not going to post its link anywhere, ever.Forum: Themes and Templates
In reply to: [Virtue] Custom Bootstrap MenuI’m sorry for any misunderstanding. I’m a bootstrap noob, and certainly don’t know what I’m talking about. What I tried was code made available on wp-bootstrap-navwalker page, and had to make a few modifications to get it to work, but wasn’t able to set collapse setting to be different on desktop and mobile view.
After analyzing the Virtue code, it appears that two different menus are required for mobile and desktop (and hence a mobile navigation menu location is provided in options).The website isn’t online yet, but I was able to copy code from Virtue menus to make this, which works, but I’m not sure it would if I replace the IDs to be unique.
function create_sidebar_menu($name) { ?> <nav id="nav-main" class="hidden-sm hidden-xs hidden-ss"> <h3><?php _e($name) ?></h3> <?php wp_nav_menu([ 'theme_location' => 'bwit_lsb_nav', 'menu_class' => 'sf-menu sf-js-enabled', ]); ?> </nav> <nav class="navbar navbar-right" role="navigation"> <div id="mobile-nav-trigger" class="nav-trigger"> <button class="nav-trigger-case mobileclass collapsed" data-toggle="collapse" data-target=".kad-nav-side-collapse"> <span class="kad-navbtn"><i class="icon-reorder"></i></span> <span class="kad-menu-name"><?php _e($name) ?></span> </button> </div> <div id="kad-mobile-nav" class="kad-mobile-nav"> <div class="kad-nav-inner mobileclass"> <div style="height: 0px;" class="kad-nav-side-collapse collapse"> <?php wp_nav_menu([ 'theme_location' => 'bwit_lsb_nav', 'depth' => 0, 'container' => false, 'menu_class' => 'kad-mnav', 'fallback_cb' => 'wp_page_menu', 'walker' => new wp_bootstrap_navwalker()] ); ?> </div> </div> </div> </nav> <?php }Forum: Plugins
In reply to: [SEO Redirection Plugin - 301 Redirect Manager] Only some redirections workIs there really an issue, or have I been using it wrong?