Replacing & in JS code on pages
I ended up doing this and it works: var data = { called: ‘CAP’, captcha: $(“#captcha_txt”).val() }; $.get(“../form/master.php”,data,function(response){ …. });
I ended up doing this and it works: var data = { called: ‘CAP’, captcha: $(“#captcha_txt”).val() }; $.get(“../form/master.php”,data,function(response){ …. });
You might find this link useful for creating custom fields in product page: http://www.remicorson.com/mastering-woocommerce-products-custom-fields/ http://www.remicorson.com/woocommerce-custom-fields-for-variations/
How about using flexbox to change the order of the flex items? https://css-tricks.com/almanac/properties/o/order/
Semantic versioning is better for WordPress. I used 4 digits in one of my plugin versions once and it didn’t play nice. Here’s a page from Make WordPress Core
When a page is set to be the page for posts, it ceases to be a “page”, and follows a different path in the Template Hierarchy: By default, WordPress sets your site’s home page to display your latest blog posts. This page is called the blog posts index. You can also set your blog posts … Read more
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
You can still find the most recent version in WordPress.org’s plugin Subversion.
Your music player looks okay to me. On line 1090 of your style.css file, you have the top padding of class .singular.page .hentry set to 3.5em. Start there. You might also want to remove padding and/or margins from the elements above the player, such as the navigation. If you want to remove the title, add … Read more
Firstly I would say, revert to a backup. Then, never use PHPMyAdmin to edit posts, in fact, uninstall PHPMyAdmin, and use a tool like mysql workbench or query browser Finally, never use youtube embed codes, to correctly embed a youtube video, put the URL to that video in your post on its own line ( … Read more
You need to add a ‘form’ method. That is the method that creates the widget form on the backend. In the current default widget, that method looks like this: function form( $instance ) { $title = isset( $instance[‘title’] ) ? esc_attr( $instance[‘title’] ) : ”; $number = isset( $instance[‘number’] ) ? absint( $instance[‘number’] ) : … Read more