I have a small website created with wordpress, i only use pages as content, and as theme the "Twenty Eleven" modified by me (without a child theme).
When i access the website via PC all ok, but when i try to access via smartphone the design is all messed up.
There is a free plugin that allow to maintain the Twenty Eleven theme for PC-users, but if the user access the website via mobile device show a responsive page or another simple theme for mobile?
something simple if possibile, without change the wp code
There is already twenty-twelve and twenty-thirteen theme available on wordpress.org and both are responsive (mobile friendly) themes and you can modify and use them but also for WordPress there are some plugins available as well, you can use any one but I suggest you to use wptouch, it's free and better than others, IMO. I've used it for years for my blog but now I've managed to use a responsive theme.
If you install wptouch plugin then whenever a visitor will visit your site with a mobile phone, WordPress will use a mobile friendly theme by the help of wptouch plugin but if you use a responsive theme then it's always the same theme but layout will be changed to fit according to device's screen size (desktop, tablet, mobiles) and it's better
than using a plugin like wptouch, so if you can, use a responsive theme instead, search on Google for free responsive themes for WordPress.
Related
I am currently using the Avada Theme. I want to create a multilingual site - for that I installed the Plugin called "Polylang". I want to have two sites - one in English, and one in German. Unfortunately with this plugin the Avada theme does not show the footer that is set in the layout options in the theme for the German version of my site.
I also tried to use the WordPress Footer widgets, but with those I was not able to display my footer as I wanted to. But maybe there is a simple solution with the footer widgets.
I want to display the footer like that - simple as that:
The texts are linking to different site. Does anyone got a solution?
I made a website by wordpress (online). I've tried free news themes but in these themes, slides don't work. And all themes aren't responsive, namely toggle button doesn't work. What can I solve these problems? Thanks in advance
I can recommend you the following site if you want it to be a great WordPress web site. For little money you get great themes here: https://themeforest.net/category/wordpress
Personally, I would recommend you a theme that works with Elementor Builder. These can be edited very easily and are responsive.
Is not meant to be an advertisement but this is my favorite theme: https://themeforest.net/item/jupiter-multipurpose-responsive-theme/5177775
Good time.
I have a problem using the Plugin WooCart Pro in the avada theme of wordpress. When I active WooCart pro plugin website in responsive mode, the screen gets white. The website gets corrupted.. Just in responsive.
Do you know what the problem is?
Looks like the versions are not compatible.
See details here in the right section https://codecanyon.net/item/woocommerce-cart-woocart-pro/7992078
You're using wordpress v4.7.1 that is not in the list below:
Hope this helps.
I have wordpress theme and I would like to add a popup when visitor get into my website from mobile and ask him if he wants to see the site mobile mode or desktop mode.
How can i make it?
Do i need 2 different sites or can I make it on the same site with 2 CSSs files?
I would like to hear any other suggestion. Thank you
I am using WPtouch Mobile plugin. It automatically enables mobile theme for mobile visitors. Here is the plugin which helps you to create pop up for your visitors. wordpress.https://wordpress.org/plugins/wordpress-popup/ .
I am trying to set up two versions to my Wordpress website:
Full website, for computers, and Mobile version, for smartphones.
I achieve this by means of a user-agent detection script included in the header.php of the full theme (path is whatevercorp.net/wordpress/wp-content/themes/moneyblog/mobiledetect.php ). If it detects a mobile browser, then it redirects to the mobile theme. I use the Theme Switcher plugin for this.
if($mobile_browser>0) {
header( 'Location: http://whatevercorp.net/?wptheme=mobiblog' );
("mobiblog" is the name of my mobile theme)
My questions is this: I use Shadowbox for photos in the full version, but I want to prevent loading it altogether as soon as a mobile browser is detected. I don't want users to view photos with shadowbox when on the mobile version. If the plugin is disabled the links work just fine and *whatevercorp.net/photosfromevent/img_001.jpg* is opened no problem.
Ideally I'd like to introduce something in the if statement from mobiledetect.php.
Someone suggested this
add_filter('shadowbox-js', '__return_false');
but it doesn't do the trick.
How can I condition the loading of the Shadowbox plugin? Thanks!
Why are you reposting this so quickly?
Original question: How to manually add Shadowbox.setup() to the footer of your theme?
I'm not, I'd like to know the answers separately! This one, how to disable a plugin from within a PHP, that other one - how to make use of that thing in the Advanced settings in order to achieve my goal. It's true, the goal is the same for both.