Sakar U Khatiwada
Forum Replies Created
-
Forum: Localhost Installs
In reply to: Using MAMP to unhack my site.Please turn off the internet and do it. Bots need to contact some host to do any thing. Or set it up in a virtual environment using tools like vmware or something.
Forum: Localhost Installs
In reply to: Using MAMP to unhack my site.Please turn off the internet and do it. Bots need to contact some host to do any thing.
Forum: Fixing WordPress
In reply to: Add classes to ul and li elements in sidebarI think you need to check the admin widgets section from where the
ul
list are coming from.Forum: Fixing WordPress
In reply to: Add classes to ul and li elements in sidebarIt’s very bad practice but if you need the output anyway it can be used. If you want your in standard way you can find how the
<ul>
is generated and some hooks used to modify the generated code ?? . Or you can use plugins that will help you get more customized menu.- This reply was modified 8 years, 2 months ago by Sakar U Khatiwada.
Forum: Fixing WordPress
In reply to: menu with all child pagesAr you searching something like this ? https://www.ads-software.com/plugins/page-specific-menu-items/
Forum: Fixing WordPress
In reply to: How to Protect Streaming Videos Watching from Guests?Best idea is not securing the video but using video services that provide security for you ??
https://www.quora.com/Where-can-I-host-a-private-video-so-that-it-can-only-be-viewed-on-my-websiteForum: Fixing WordPress
In reply to: WP changes my class namesDo you mean editor is removing schema.org tags ? If so you can try this snippet https://snipt.net/jamesw/prevent-tinymce-from-stripping-schemaorg-attributes-in-wordpress/
Forum: Fixing WordPress
In reply to: Add classes to ul and li elements in sidebarThen the javascript method can be implemented. Simple jQuery code can be
jQuery(document).ready(function(){ jQuery('#sidebar-right ul').each(function(){ jQuery(this).addClass('list-group'); jQuery(this).find('li').each(function(){ jQuery(this).addClass('list-group-item'); }); }); });
Forum: Localhost Installs
In reply to: Using MAMP to unhack my site.Is the data on the database deleted too ? If not better idea is to export the post and pages from the mallicious site if it still exists and create a fresh WordPress site using the data (post and pages) from the hacked site and install fresh themes and plugins not a single code to take from the old site.
Forum: Fixing WordPress
In reply to: featured image disappears after savingMay be it is due to missing GD extension in the server.
can you tell host to please check it GD extension is installed or not for image manipulation ?
Forum: Fixing WordPress
In reply to: Double menu on iphone / both not workingThey are not working due to javascript errors. Please check your console there are several javascript errors please try to debug it accordingly. I think async loading of jQuery is causing the problem since the script containing jQuery runs faster than the jQuery is fully loaded.
- This reply was modified 8 years, 2 months ago by Sakar U Khatiwada.
Forum: Fixing WordPress
In reply to: JQMIGRATEIs says that somewhere the jQuery.fn.load() function is called which the jQuery migrate detected.
Forum: Fixing WordPress
In reply to: PHP Fatal Error in /wp-includes/cron.phpI think some plugin is doing that please disable the recent plugin that you have used or remove the codes that you have added recently in functions.php
Forum: Fixing WordPress
In reply to: Gallery on Homepage is not working correctlyThe problem is surely of theme but the theme has been taken down from themeforest and user who uploaded it is also gone. Here we donot provide the support for commercial themes. So please contact the respective theme seller ?? I think their new url is https://pixelgrapes.com
Forum: Fixing WordPress
In reply to: Open tabs for front and back end in chrome not working.May be the profile is changed in chrome when new tab is opened ? https://support.google.com/chrome/answer/2364824?hl=en
- This reply was modified 8 years, 2 months ago by Sakar U Khatiwada.