bastetmilo
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Search for links by keywordI think some sort of search and replace plugin will do the work.
Like this https://www.ads-software.com/plugins/search-and-replace/Forum: Fixing WordPress
In reply to: Vertical text and layout issues showing on mobile siteHi,
As I can see, in code of your website are putted lines like this
<!-- .themify_builder_content-2370 > .module_row_2 Style --> <style> .themify_builder_content-2370 > .module_row_2.module_row { background-color: #000000;; padding-top : 50px; padding-right : 200px; padding-bottom : 50px; padding-left : 200px; margin-top : 0px; margin-right : 0px; margin-bottom : 0px; margin-left : 0px } </style>
There are no media queries for them, there are inline, and there for they have high priority.
Problematic in this case ispadding-left
andpadding-right
– 200px. So what will happen when you have 400px padding and 320px wide screen? ??
I don’t know how familiar are you with CSS – but if know them, you could write media queries that will remove this big paddings with !important (I know that’s ugly, but it will work).Forum: Fixing WordPress
In reply to: How to disable Mobile theme from Pagelines?Hi,
First of all, you don’t have a mobile version of your site. Your site is responsive (google Responsovie Web Design – you will see what’s the difference).
I’m not familiar with iBlogpro, so I can’t help you with that.
If you can modify the code in header, removing this line would help:
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
BUT! I strongly recommend that you shouldn’t do that. You should be aware of fact that now Google likes responsive/mobile websites more than sites without mobile version. Having a RWD/mobile site will benefit you, your business and your users.Forum: Plugins
In reply to: Please do you know any good plugin i can use to make my site multi-lingual?Hm. Add a page in WordPress panel admin and title it “Terms and Conditions”, and then publish?
Hi @benji007
I think you can use this plugin to make relations between post types
https://scribu.net/wordpress/posts-to-posts/Forum: Plugins
In reply to: Please do you know any good plugin i can use to make my site multi-lingual?Hi @whizkidefos
I use Polylang:
https://www.ads-software.com/plugins/polylang/Forum: Fixing WordPress
In reply to: Disable adding scripts before tagSo it is possible to prevent WP from adding scripts to the end of </body> just for the one specific file/page template?
Yes. Use conditional tag
https://codex.www.ads-software.com/Conditional_Tags#Is_a_Page_Template
with this:
https://codex.www.ads-software.com/Function_Reference/wp_enqueue_script
in your theme functions.php file.@umairi did you cleared cache of your browser?
And log into your ftp account and check your functions.php file if you really remove that code.
@umairi please use pastebin.com or
code
tag here for code.You have error here:
echo "<div id="clear"></div><div id="xs-pagination">";
it should be like that:
echo '<div id="clear"></div><div id="xs-pagination">';
Use ‘ instead of “.You probably remove too much, or not every piece of code you’ve inserted earlier. Show line 22 of your code.
Can you show us the code you’ve inserted in functions.php?
Forum: Plugins
In reply to: [Polylang] Way to disable current lang in languages switcherOk, thanks for hint, I will try.
Forum: Plugins
In reply to: [Polylang] Way to disable current lang in languages switcherHi,
I don’t want to hide it – I just want to disable it (change link to something else).
Forum: Plugins
In reply to: [Polylang] Polylang works quirky on CPTHi,
thank you for help and answers and all what you did. I’m going to test the new version of Polylang and get back to you with the results.
??
Forum: Plugins
In reply to: [Polylang] Polylang works quirky on CPTOK, thank you very much for you answer. ??
ps. BTW I love Polylang ??