ps1
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to protect Word PressI use Wordfence and Sucuri plugins (hardening to stop access to PHP) and always check my site with https://sitecheck.sucuri.net/
Keep everything up to date (plugins, core files & themes) make regular backups and cross your fingers for luck.
Hard thing to do if they target you.
Forum: Fixing WordPress
In reply to: Images disappear after upgrade to 4.42Images are 644
Forum: Fixing WordPress
In reply to: Images disappear after upgrade to 4.42They are all folders set to 755
Forum: Fixing WordPress
In reply to: Images disappear after upgrade to 4.42Thanks @ bukge what should they be?
Still no luck resolving this plugin error. Plugin is virtually unusable at this stage. As I cannot omit just Arabic and Hebrew and have only left to right languages as we will be called racist.
OK. Took the above link in English and pasted that directly into the Google Translate website. The Arabic text then aligned correctly to the right so not the WP theme. Narrowed it down to being Google or the plugin
Looking at trying to edit the css of the plugin with some sort of ‘if’ statement when Arabic is selected to align right?
Thanks help still needed.
Forum: Themes and Templates
In reply to: [Responsive] Adding More Home Widgetsright once again janet4now
Thank You
Forum: Themes and Templates
In reply to: [Responsive] Adding More Home WidgetsOK now I have the required number of widgets. Added the code to responsive_child: sidebar-home-widgets-triple.php and responsive_child: Theme Functions (functions.php).
But as can be seen do not line up ??? Probably something newbie
Thank You
Forum: Themes and Templates
In reply to: [Responsive] Adding More Home WidgetsHi janet4now
I am using a child theme. Thanks for the link. However with the link I provided the procedure creates 5 php files in the child theme.
sidebar-home-widgets-triple.php
sidebar-home-widgets-double.php
sidebar-home-widget-single.php
front-page.php
functions.phpThere is something in there that is limiting the use of each widget style to one.
Thanks
Forum: Plugins
In reply to: [Easing Slider] Displaying the slider problemWorked it out with the kind help of others. Just for others who may stumble on this.
I added
@media all and (max-width: 650px) { .easingsliderlite { display:none; } } @media all and (max-width: 480px) { .easingsliderlite { display:none; } } @media all and (max-width: 320px) { .easingsliderlite { display:none; } } @media all and (max-width: 240px) { .easingsliderlite { display:none; } }
to style.css in the child theme. Thank you janet4now and Craig Ralston
Also I wanted the background to be disabled or not visible on mobile devices so I added.
@media (max-width : 650px) { body.custom-background { background-image: none; } } @media (max-width : 480px) { body.custom-background { background-image: none; } } @media (max-width : 320px) { body.custom-background { background-image: none; } } @media (max-width : 240px) { body.custom-background { background-image: none; } }
I suppose that leaves option for a custom background image for mobile devices as well. Will look into that later
Cheers
Forum: Fixing WordPress
In reply to: Mobile theme helpJust for anyone else add this to the style.css to disable or not display background on mobile theme. Probably allows for a custom background on mobile devices as well. will look at that later.
@media (max-width : 650px) {
body.custom-background {
background-image: none;
}
}Thanks janet4now & Craig Ralston
Forum: Fixing WordPress
In reply to: Mobile theme helpThank you janet4now. I tested it on my local LAN copy and it worked. The reason I was trying rtl.css was because there was @media code similar to what I was trying to change. Did try it style.css child theme but it did not work. Suppose I was missing the extra bracket. Dumb error I suppose. Just need to work out how to do the same with background.
Thank You
Forum: Fixing WordPress
In reply to: Mobile theme helpThanks craig. I changed the rtl.css code to this but it stll shows
/* Theme Name: responsive_child Template: Right to Left text support. */ @import url("../responsive/rtl.css"); @media screen and (max-width: 650px) { .easingsliderlite { display:none; } @media screen and (max-width: 480px) { .easingsliderlite { display:none; } @media screen and (max-width: 320px) { .easingsliderlite { display:none; } @media screen and (max-width: 240px) { .easingsliderlite { display:none; }
Forum: Fixing WordPress
In reply to: Mobile theme helpThanks Craig. Do you mean replace
@media screen and (max-width: 650px) { #easing_slider { display:none; } With this in rtl.css in the child theme?
@media screen and (max-width: 650px) { .easingsliderlite { display:none; }
Forum: Fixing WordPress
In reply to: Mobile theme helpOK, after bugging someone I got it uploaded to a web server
Have the @media code above in the rtl.css in the child theme
No content just basically the header, background and slider in.
Best viewed in Firefox. Have not fixed the Moz gradient thing for the navbar to change colour in IE