How to move a widget below the menu in a sidebar in twenty thirteen?
How about using flexbox to change the order of the flex items? https://css-tricks.com/almanac/properties/o/order/
How about using flexbox to change the order of the flex items? https://css-tricks.com/almanac/properties/o/order/
I had this problem and the answer was found (a) in enabling ftp to write and (b) at least temporarily setting the directories to 777 although I think the latter permissions can be improved. I run vsftp with chroot’d users. After finding no mention in apache logs, setting the permissions to 777, changing ftp group … Read more
The problem could be in multiple locations, but it’s probably in your index.php or loop.php file. Look for “Tagged” in the theme file, and compare to Template Heirarchy to figure out which page to delete the line from. If you show your code snippet, we can tell you which exact line needs to go.
The code you have pasted has errors – the get_header() is fine but then you have HTML code in PHP code areas. Also you have included the header twice. Check this code out http://pastebin.com/mH2tn3Qw The header code should be placed in header.php if you are using the get_header() call
You can change the contents of all emails by overriding the templates from your (child) theme. Read the documentation on Template Structure for more information on where all the files are located and how you can override them. For example, say you would like to override the admin order notification, copy: the templates/emails/admin-new-order.php file from … Read more
It could be the ‘name’ in the labels array of the register post type. It would be much easier to help if you can show us your code.
You could do it with jQuery: jQuery(document).ready(function($) { $(‘a[href*=#]’).on(‘click’, function(event){ event.preventDefault(); }); }); Save that to a file (something.js) and upload it to your server. Then add the following to your functions.php (remember to set up a child theme if you aren’t using one): add_action( ‘wp_enqueue_scripts’, ‘prefix_load_scripts’ ); function prefix_load_scripts() { wp_register_script( ‘something’, get_stylesheet_directory_uri() . … Read more
First answer this question: Why bypass the WordPress login/auth system? What’s the end-game here? I would highly recommend against using PHP sessions to maintain user state in the WordPress world. More likely than not, a cookie will be sufficient. For using cookies, you can use the PHP setcookie() function to set cookies, and the $_COOKIE … Read more
Create page templates inside your theme and create page-{template-name}.php for each one of them and you need to code the appropriate query for each case. Then go to each page inside admin panel, open each page and just assign each page to their matching template. If you are not familiar with how to do any … Read more
Building on what Tom J Nowell said in his comment you can’t directly integrate it. I’d say your only (although hacky) way of achieving something close to this is a custom template with an iframe. You just create a new page. Then you need a Custom Page Template. You have two options, either a Custom … Read more