Tremi Dkhar
Forum Replies Created
-
Forum: Reviews
In reply to: [Enter Title Here Changer] Great!Glad that it works for you!
Hello,
I have tried the above code, but it is not working. I also try to change the priority but it is not helping.
Do you have any other technique.
Regards,
TremiForum: Fixing WordPress
In reply to: Redirect http requests to httpsTry update your WordPress Address (URL) and Site Address (URL) by adding https://www.example.com in place of https://www.example.com
Forum: Fixing WordPress
In reply to: How to add this type of contentYou can install Vantage theme from the WordPress repository along with Page Builder. This will help you in what you want without coding. ??
Please help me out
Forum: Fixing WordPress
In reply to: How do I go back to the default settings htaccess Rules!You need to edit the htaccess file and remove all the custom rules.
If you have change the permalinks structure from Default, then the htaccess rules will be something like these
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
Forum: Fixing WordPress
In reply to: Can't dequeue a plugin css fileAnytime ??
Forum: Fixing WordPress
In reply to: Can't dequeue a plugin css fileHello drazon,
In the above code we have add a filter to the footer because the style is enqueued in the wp_footer. By filter the wp_footer it will check if the style handler “prefix-font-awesome” is present and dequeue it.
For more information on wp_footer check this link
Forum: Fixing WordPress
In reply to: password problemTry resetting your password through phpmyadmin
Forum: Fixing WordPress
In reply to: Can't dequeue a plugin css fileTry these code:
function remove_unwanted_css(){ wp_dequeue_style('prefix-font-awesome'); } add_filter('wp_footer', 'remove_unwanted_css');
Forum: Fixing WordPress
In reply to: How to add the # prefix for each tag in wordpress posts?This link might helped you: the_tags().
Forum: Fixing WordPress
In reply to: Can't dequeue a plugin css fileHello drazon,
If you are taking about the style from the admin end then I hope these code will work for you.function remove_unwanted_css(){ wp_dequeue_style('prefix-font-awesome'); } add_action( 'admin_enqueue_scripts', 'remove_unwanted_css', 100);
Forum: Fixing WordPress
In reply to: Can't dequeue a plugin css fileCan you give me the link to that plugin so I can check it myself?
Forum: Fixing WordPress
In reply to: References to images don' t update after changing site locationYou’re Welcome :}
Forum: Fixing WordPress
In reply to: Can't dequeue a plugin css fileTry to add the following code
function remove_unwanted_css(){ wp_dequeue_style('prefix-font-awesome'); } add_action( 'wp_print_styles', 'remove_unwanted_css', 100 );