bobfelstead
Forum Replies Created
-
Forum: Plugins
In reply to: [Discounts & Promotions Automation] Breaks websiteHi Fahad,
Thanks for the prompt reply, you obviously care a great deal about what you do. ??
Although the website broke, I removed the plugin via ftp:// and all is working again. If you need to look at the issue first hand, I can provide you with admin login detail for the website – email me at [email protected] if you want. I’ll install the plugin but will not activate it.
Symptoms.
The back end slows down and will not allow any updates to pages/posts/plugins. In WordPress 4.9.1 the plugin is immediately stopped from working and removed due to incompatability – I think that this is a new feature??
Any how, let me know if you want to take a look – I will provide the necessary detail including ftp:// if you need it.
Best wishes and keep up the great work!
Best
Bob
Forum: Plugins
In reply to: [Yoast SEO] focus keyword does not display and page analysis not functioningI have exactly the same issue.
The text contains 0 words. This is far too low and should be increased. Bad SEO scoreNo images appear in this page, consider adding some as appropriate. Bad SEO scoreThe focus keyword doesn't appear in the first paragraph of the copy. Make sure the topic is clear immediately. Ok SEO scoreThe focus keyword for this page contains one or more stop words, consider removing them. Found 'and'. Ok SEO scoreNo outbound links appear in this page, consider adding some as appropriate. Ok SEO scoreThe focus keyword does not appear in the URL for this page. If you decide to rename the URL be sure to check the old URL 301 redirects to the new one! Ok SEO scoreThe specified meta description is over 156 characters. Reducing it will ensure the entire description is visible Ok SEO scoreThe page title contains the focus keyword, but it does not appear at the beginning; try and move it to the beginning. Ok SEO scoreNo subheading tags (like an H2) appear in the copy.
I’m using the Pro version of GeneratePress by Tom Usborne whichis compatible with Yoast SEO. I’ve already disabled all plugins to try to resolve the issue to no avail.
WordPress v 4.20
Yoast v 3.06
GeneratePress v 1.2.77The previous of Yoast SEO v 3.04 worked with GeneratePress without issue using identical plugins. I daren’t update the plugin on several other websites which are currently requesting updates.
Any ideas?
The website is at https://mistercs.co.uk
Forum: Themes and Templates
In reply to: [Sydney] Sydney Employeeshi lept,
Create the child theme first and copy main.min.js to the js folder of your child theme, eg: /wp-content/themes/child_theme/js
Open main.min.js in your favourite editor, or you could use main.js and minify it after the edit, then proceed as above. For the purpose of this response, I’m Showing main.min.js below, look for this at towards the bottom of the file:
.owlCarousel({navigation:!1,pagination:!0,responsive:!0,items:3,itemsDesktopSmall:[1400,3],itemsTablet:[970,2],itemsTabletSmall:[600,1],itemsMobile:[360,1],touchDrag:!0,mouseDrag:!0,autoHeight:!1,autoPlay:!1})}
Change the itemsDesktopSmall:[1400,3] to [1400,4], save the file upload and replace. That’s it!
You can also amend the Tablet, TabletSmall and Mobile in a similar way.
The first vale of [x,y] is the screen size, the second is the number of images.Hope this helps
Bob
Forum: Plugins
In reply to: [WeShare Buttons] Default ColourI have exactly the same issue. You cannot leave the background colour blank, as the text box does not allow text input.
Is there another method to reset?
Forum: Themes and Templates
In reply to: [Sydney] Sydney EmployeesIt’s a standard feature and its a drag and drop option when adding widgets in page builder. It should be recognized as Sydney Employees in the back-end.
On the dashboard, there should be an employee section. Add employees there. If there are no employees, then the widget will not display any content on the frontend.
Forum: Themes and Templates
In reply to: [Sydney] Sydney EmployeesThanks Vlad, that worked a treat.
Forum: Fixing WordPress
In reply to: Initiating wow.js inside of WordPressHi keljnr,
Why don’t you do the whole initialisation for WOW within functions.php? This can be done quite simply:
wp_enqueue_script( 'wow', get_template_directory_uri() . '/js/wow.min.js', array( 'jquery' ), true ); wp_enqueue_style( 'animations', get_template_directory_uri() . '/css/animate/animate.min.css' ); wp_enqueue_script( 'wow-init', get_template_directory_uri() . '/js/wow-init.js', array( 'jquery' ), true );
You then don’t need to do any initialisation in footer.php, and the script is available for use throughout the website.
Hope that this helps.
Bob
Forum: Themes and Templates
In reply to: [Theme: Moesia] Page Background color to transparentHi Guys,
You’re looking in the wrong place. Background colours are controlled in styles.php in the main theme not sytles.css!
if ( isset($services_bg) && ( $services_bg != '#fff' ) ) { $custom = ".services-area { background-color: #fdf9ee !important; }"."\n"; }
Exactly where I’ve place #fdf9ee you’ll see {services_bg} replace this with your colour for each of the affected sections.
Forum: Themes and Templates
In reply to: [Moesia] Moesia Video zindex bug IEHi Vladff,
Thanks for the quick reply. The development site is here
I’ve moved the video into the first section below the header image. The issue is in IE9, 10 and 11.
Regards,
Bob
Forum: Themes and Templates
In reply to: [Moesia] Moesia child theme & Widget customizationHi,
I’m doing amending certain widgets to change the default style of some of the widgets and Vlad has pointed out how to do this in the thread you have mentioned.
Basically create a fuctions.php file within your child theme directory.
Okay the first bite of code is to register the widget and to give some detail, that’s this bit.
register_sidebar( array( 'name' => __( 'Header Contact', 'moesia' ), 'id' => 'header-1', 'description' => '', 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<span class="contact-title">', 'after_title' => '</span>', ) );
Ten, again in your child thems functions.php define your new function, below the above code:
function <strong>your_new_function_name</strong>() { ........(your functions code here) } // ADD THE FUNCTION WIDGET } add_action( 'widgets_init', '<strong>your_new_function_name</strong>' );
Don’t overwrite the old function, just add the new one and use it!
Okay?
Forum: Themes and Templates
In reply to: [Accelerate] Remove brandingFirst things first, this is well documented within the wordpress codex and that’s where you should go for a solution. Creating a child theme is the solution and most people only get as far as creating a child theme style sheet. In this case the solution is very simple:
-
Copy the following 2 files to your local storage footer.php and siderbar-footer.php
-
Using something like Notepad++ you need to edit both files.
-
footer.php amend line 17 which contains
<?php get_sidebar( 'footer' ); ?>
to something like<?php get_sidebar( 'yourname' ); ?>
and save the file.-
sidebar-footer.php Rename this to sidebar-yourname.php
-
Amend the content of this new file (sidebar-yourname.php) to whatever you want to display in your footer. Save the file.
-
Upload both files to your themes child directory. That’s it, job done.
Good luck!