f1ss1on
Forum Replies Created
-
Forum: Plugins
In reply to: [Polylang] Menu appears to cache with PolylangForum: Plugins
In reply to: Moving WooCommerce Product Image Metabox to TopI figured it out. WooCommerce I changed out ‘post’ with ‘product’ and it worked fine.
Here is my new code.
function meta_box_position() { remove_meta_box( 'postimagediv', 'product', 'side' ); add_meta_box('postimagediv', __('Product Image'), 'post_thumbnail_meta_box', 'product', 'side', 'high'); } add_action('do_meta_boxes', 'meta_box_position');Forum: Fixing WordPress
In reply to: Similar posts appearing twice at the bottom of certain posts…The code actually looks fine. You may have a conflict with your theme or another plugin. Try disabling each plugin one at a time and see if that fixes it.
Forum: Fixing WordPress
In reply to: Similar posts appearing twice at the bottom of certain posts…I would have to see the code. If it is a widget, if it is hand coded there may be some loop issues.
Forum: Fixing WordPress
In reply to: WP auto-editing Section ElementsIt look’s as if the closing tags are in the proper place. If you do not want them there, add the closing tags in yourself.
If not try adding this in functions.php
remove_filter( ‘the_content’, ‘wpautop’ );
remove_filter( ‘the_excerpt’, ‘wpautop’ );Forum: Fixing WordPress
In reply to: Similar posts appearing twice at the bottom of certain posts…Did you add the template code in by hand, or are you using just the plugin?
I figured it out. Under Yoast WordPress SEO: Social I unchecked the Add Open Graph meta data, and dom came out fine along with the featured image.I am beginning to debug now to see why it did that, but for anyone else having issues, try that.
As you can see in the dom above, the </head> closes out, but then in the <body> More head tags appear, including the duplicate featured image.
I disabled WordPress SEO, and the problem goes away.
[Moderator Note: No bumping. If it’s that urgent after just 29 minutes, consider hiring someone instead.]
Forum: Fixing WordPress
In reply to: Site suddenly not displaying@teighe, I saw that you got the issue resolved. Out of curiosity, was it what I pointed out?
Forum: Fixing WordPress
In reply to: Why is my url showing ?doing_wp_cron=Glad I could help!
Forum: Fixing WordPress
In reply to: Making slider appear in all pagesGlad I could help!
Forum: Fixing WordPress
In reply to: Moving wordpress site to root directory from another folderGlad to help!
Forum: Fixing WordPress
In reply to: Contact Form, From [email protected]ok, JetPack contact form. When you add the contact form, there is another tab , “Email Notifications” that has additional settings. There you can add a return email address and subject line on it.
Forum: Fixing WordPress
In reply to: Fatal error: Call to undefined function wp_unslash()WPRanger is right. To update, try to comment out the code
function wp_referer_field( $echo = true ) { $referer_field = '<input type="hidden" name="_wp_http_referer" value="'. esc_attr( wp_unslash( $_SERVER['REQUEST_URI'] ) ) . '" />'; if ( $echo ) echo $referer_field; return $referer_field; }That should allow you to upgrade.
Forum: Fixing WordPress
In reply to: view / editIf the theme being used does not support the wp_nav_menu, you will not see it. The links may have either been added using wp_list_pages or wp_list_categories. Can you paste the contents of your header.php file here?