anurag.deshmukh
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Simple: How do I fix this?That’s great !!!
Forum: Fixing WordPress
In reply to: Login form in browser languageWhich plugin you are using for making site multilingual ? I assume you just need to change labels/placeholders of login form as per the detected browser language. Plugin should have option to change/add labels as per selected language.
In WordPress/PHP manually you can check/detect browser language as :
$language = $_SERVER['HTTP_ACCEPT_LANGUAGE']; $lang = explode(',', $language); $lang[0];
$lang[0] will give you browser language. You can play around with this.
Forum: Fixing WordPress
In reply to: Parse errorThis might be the issue with server. I got 1 link. Hope this helps.
https://www.ads-software.com/support/topic/parse-error-on-functions-php-2/
Forum: Fixing WordPress
In reply to: Parse errorCan you share the code that has been written on line 42 ?
Forum: Fixing WordPress
In reply to: Keyword count of my word press siteIf you don’t want to show this on front end and just need to check where particular keyword and how many times it has been used, you can search that directly in database.
> Login to phpmyadmin
> Click on your database
> Click on Search tab (which is at 3rd position)
> Place keyword which you need to search
> Check for selected Find value
> Make sure you click on Select All link so as to make sure search is being carried out in all tables.
> Click on Go button which is on bottom left.You will be able to see how many times it has been used as well as in _posts table.
Forum: Networking WordPress
In reply to: Remove /home from URL WordPressUse below plugin to make permalinks as per your choice.
Url : https://www.ads-software.com/plugins/custom-permalinks/
Forum: Fixing WordPress
In reply to: Plugins for Employees Logins?For Login and registration from front end you can use below plugin.
Url : https://www.ads-software.com/plugins/profile-builder/If you wish to make complete site as Password protected, then you can use below plugin.
Url : https://www.ads-software.com/plugins/password-protected/If you wish to protect just content for single page say homepage or any page, you can do that directly from admin panel.
> Go to that page, edit it
Check for this screen : https://prnt.sc/ioreeqLet me know if this helps you.
Forum: Fixing WordPress
In reply to: Simple: How do I fix this?You need to remove below code from pages that are listed below :
Code to remove :
<div class="overlay"> <div class="caption"> <a href="<?php the_permalink() ?>"><?php _e( 'View more', 'quest' ); ?></a> </div> <a href="<?php the_permalink() ?>" class="expand">+</a> <a href="#" class="close-overlay hidden">x</a> </div>
Remove above code from below pages :
1. \themes\quest\content-page.php
2. \themes\quest\content-single.php
3. \themes\quest\partials\content-grid-single.php
4. \themes\quest\partials\content-medium.php
5. \themes\quest\partials\content-normal.phpForum: Fixing WordPress
In reply to: Plugins for Employees Logins?Do you mean to say if any user/employee try to access site, he/she should get a screen where they will fill username & password and if correct, they will be able to access homepage ?
Forum: Fixing WordPress
In reply to: Cannot find built in visual editorThere might be the case that WordPress cannot load the TinyMCE editor files or the TinyMCE javascript code could not be run. You need to check with below few things :
1) Make sure your browser has javascript enabled.
2) Open this URL in your browser https://www.animeheads.net/wp-includes/js/tinymce/wp-tinymce.php. You should see some text here (javascript code).
3) Open your admin panel, edit any page/post, press F12 (if using Windows) or simply right click and click on ‘Inspect Element’ to debug/check if there is any error in console tab.
4) You can also check if there is any issue with current theme once by switching the theme and then checking if still the problem exist.
5) If above doesn’t work for you, try adding define(‘CONCATENATE_SCRIPTS’, false); in wp-config.php file.
Forum: Fixing WordPress
In reply to: count custom taxonomyI guess now you can change the topic status as ‘Resolved’ !!!
Forum: Fixing WordPress
In reply to: Everything On Post Edit Page is Now CenteredCan you share the actual link where the problem occurred ?
Forum: Fixing WordPress
In reply to: Everything On Post Edit Page is Now CenteredDid your content got centered aligned by click of center align button ?
Please have a look at provided screenshot. If this is the case, please select the content that you wish too make left align and then click on left align button.Assumed Screenshot : https://prnt.sc/il7po0
Correct Screenshot : https://prnt.sc/il7qmq
If anything different, can you please share the screenshot for better understanding ?
Forum: Fixing WordPress
In reply to: Update plugin errorThis seems to be a read-write permission issue. Try once by changing the “wp-content” folder’s permissions to 755. Don’t give 777 permission as at the end you have to reverse the permission from security point of view.
If above method doesn’t work, please add below code in wp-config.php file.
define('WP_TEMP_DIR', ABSPATH . 'wp-content/');
Forum: Fixing WordPress
In reply to: Add iframeDo you wish to add sidebar content in iframe ? Moreover we can add/pass url in src.
What exactly you wish to accomplish with this ?