How to change the markup created by menu item only on chosen items?
OK this one is solved. I actually created a separate items that can be dragged in as a link, but are actually hard coded pieces of markup with adequate classes.
OK this one is solved. I actually created a separate items that can be dragged in as a link, but are actually hard coded pieces of markup with adequate classes.
Why don’t you use WP_Query. You can pass array as parameter. The array can contain category, number of posts, order etc. Then you can use the while loop to display posts and wrap them in html. Please go to http://wordpress.org and look for WP_Query for further details.
Because some of titles are running on to three lines when the screen gets smaller its messing up the flow of the floated elements. What you need to do is clear every fourth element. Also this is a basic css question and is not specific to WordPress at all.
Embedding PayPal code into the text editor is always a little risky due to the layout of html elements ‘PayPal style’ vs the layout of html elements ‘WordPress content style’… both are trying to ‘think’ for you a little bit to make your life easier, but as a result the formatting can go whacky. As … Read more
Yes, quick and dirty just create a new page template, set it as the home page. Then in your page template copy the signup code from wp-signup.php into the page template
You can copy the templates folder inside the Woocommerce plug-in folder and place them in a custom Woocommerce folder inside your theme folder. every changes you make inside the custom Woocommerce folder will override the core files of the Woocommerce plug-in without loosing them after an update. You have to give us more information aboutdisplaying … Read more
Doesn’t sound like you’re doing anything wrong but can’t really assist without more information. I’m thinking it’s either a theme, plugin, or server issue. First try disabling the cherry lazy load / parallax plugins to see if it is coming from there. Then try changing your theme to see if you have the same problem … Read more
You are missing /wp-content/themes/YOUR_theme_NAME_FOLDER like this: function sliderimgchange(){ if ($(window).width() <= 600) { var sliderOne = $(‘.slideuno’).attr(‘src’, ‘/wp-content/themes/YOUR_theme_NAME_FOLDER/images/sliderone-mobile.jpg’), sliderTwo = $(‘.slidedos’).attr(‘src’, ‘/wp-content/themes/YOUR_theme_NAME_FOLDER/images/slidertwo-mobile.jpg’), sliderThree = $(‘.slidetres’).attr(‘src’, ‘/wp-content/themes/YOUR_theme_NAME_FOLDER/images/sliderthree-mobile.jpg’); } else if ($(window).width() > 600) { var sliderOne = $(‘.slideuno’).attr(‘src’, ‘/wp-content/themes/YOUR_theme_NAME_FOLDER/images/sliderone.jpg’), sliderTwo = $(‘.slidedos’).attr(‘src’, ‘/wp-content/themes/YOUR_theme_NAME_FOLDER/images/slidertwo.jpg’), sliderThree = $(‘.slidetres’).attr(‘src’, ‘/wp-content/themes/YOUR_theme_NAME_FOLDER/images/sliderthree.jpg’); } }
check Two title tags in my header there is already add_theme_support( ‘title-tag’ ); in functions.php file. the wp_title() tag in the header is automatically added.copy your parent theme header.php to your child theme and delete the wp_title() tag in the header.php
if you print_r($houseQuery), what is your request query? It’s a correct SQL query? When you print WP_Query object you can find this in structure: [request] => SELECT SQL_CALC_FOUND_ROWS[…] You need to analyze this to understand what’s going on. Let me know.