harimay
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Fatal error get_current_screenYup
Sorry I did not ready that propelyForum: Fixing WordPress
In reply to: How to hide post from the first page on my site ?Hey can you provide us the Links of you sites
So that we can help you out
Forum: Fixing WordPress
In reply to: How to set my widget and main content to align centerHey can you provide us the Links of you sites
Forum: Fixing WordPress
In reply to: Unable to add photos to posts since updateHey markpaul0
Try chancing the themes an deactivating all the plugins
Forum: Fixing WordPress
In reply to: preview when sharing linkI have being with the same pobelm
You just need to add this line themes functions.php file an ou work will be done
Also add this Plugin
“Facebook Open Graph, Google+ and Twitter Card Tags”function HARIMAY_save_post_callback( $post_id, $post, $update ) { $slug = 'post'; if( $slug == $post->post_type ){ $http = new WP_Http(); $response = $http->post( 'https://developers.facebook.com/tools/debug/sharing/?q='.get_permalink( $post_id ) , array( 'timeout' => 50 ) ); $response = $http->post( 'https://developers.facebook.com/tools/debug/sharing/?q='.get_permalink( $post_id ) , array( 'timeout' => 50 ) ); $response = $http->post( 'https://developers.facebook.com/tools/debug/sharing/?q='.get_permalink( $post_id ) , array( 'timeout' => 50 ) ); } } add_action( 'save_post', 'HARIMAY_save_post_callback', 10, 3 );
Hope you Problem will get solved with this
Forum: Fixing WordPress
In reply to: Products and pricing change in PaypalHey lkawasawa
Can you share the link please. So we can have an clear idea of what is happening
Forum: Fixing WordPress
In reply to: Preview screen pulling in all posts regardless of categoryHey weaverr
Can you share the link. So that I can have an clear idea of what you are taking about
Forum: Hacks
In reply to: Custom plugin not allowing access to wp-adminCan I suggest you something
please used the WordPress text widget instead of creating a new widgetI will be more easy an less time consuming
If then also you want to create a custom Widget let me know
Forum: Plugins
In reply to: [WooCommerce] Problem with variable products images & images in generalWelcome annjolie89
Please make this as “resolved”
Forum: Fixing WordPress
In reply to: Fatal error get_current_screenBoth are correct because in my code
I am checking is function exists or notIf it exists then my code will not going to run
So there can’t be any clash or fatal error with the WP or any other plugin
Forum: Fixing WordPress
In reply to: Visual Editor Blank, No Text EditorManually go an check is that file Exits of not
I think at the time of updating the sites the file was not being properly added to the WordPress
You can manually go an check is that file present or not
If file exists then replace the content an if not exits add the file and tryForum: Fixing WordPress
In reply to: Empty pagesCan you please send the Screenshot/Code of the Page.php Page
It will be under the follwing file wp-wp-content/themes/responsive/page.php
Forum: Plugins
In reply to: [WooCommerce] Problem with variable products images & images in generaladd this line in the Theme Style.css
an your work will be Done
.has-children>.images { opacity: 2!important; }
Forum: Themes and Templates
In reply to: How to remove navigation from one page onlyHey johnd1984
Just add this line in the themes file called functions.php file an you work will be donefunction harimay_wp_footer_callback() { if( is_page( 1385 ) ){ ?> <style type="text/css"> body nav#site-navigation{ display: none!important; } </style><?php } } add_action( 'wp_footer', 'harimay_wp_footer_callback' );
Forum: Hacks
In reply to: front end publishing (wp_insert_post) on home page, archive page & search pageChange this from
//REDIRECT TO THE NEW POST ON SAVE $link = site_url(); wp_redirect( $link );
To
//REDIRECT TO THE NEW POST ON SAVE $link = get_permalink( $pid ); wp_redirect( $link );