Softound Solutions
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Aviator] Remove site navigation from wordpress admin bar (top)Ok, so you can use the following CSS
#top-menu-bar{ display:none; }Note: De-activate the aviator-child theme
Forum: Themes and Templates
In reply to: [ZeroGravity] Images in RSS FeedHi,
I tried the same code as below, it is working without any crash
function rss_post_thumbnail($content) { global $post; if(has_post_thumbnail($post->ID)) { $content = '<p>' . get_the_post_thumbnail($post->ID) . '</p>' . get_the_content(); } return $content; } add_filter('the_excerpt_rss', 'rss_post_thumbnail'); add_filter('the_content_feed', 'rss_post_thumbnail');Forum: Plugins
In reply to: [Contact Form 7] auto post form infoYou can try this code
function action_wpcf7_create_page( $contact_form ) { $new_page = array( 'post_title' => 'Contact-page-' . date('Y-m-d H:i:s'), 'post_content' => sanitize_text_field($_POST["your-message"]), 'post_status' => 'publish', 'post_type' => 'page', ); wp_insert_post( $new_page ); } add_action( 'wpcf7_before_send_mail', 'action_wpcf7_create_page');Forum: Themes and Templates
In reply to: [Aviator] Remove site navigation from wordpress admin bar (top)Forum: Plugins
In reply to: [Contact Form 7] auto post form infoyes, i will find and share you the code.
Forum: Themes and Templates
In reply to: [Virtue] Slider image sizing issuesTry 1350 X 400 image size
Forum: Themes and Templates
In reply to: [ZeroGravity] Images in RSS FeedHi,
can you send me that tutorial link ?
Forum: Plugins
In reply to: [Contact Form 7] auto post form infoyou mean create a new wordpress page, and the content would be email message, right ?
Forum: Plugins
In reply to: [WooCommerce] Stock – "In stock" or "Out of stock"Hi,
I have a plugin to do the above task, i will host in github and let you know.
then you can use it. it has admin option to change any stock status name as you wish.thanks
Forum: Themes and Templates
In reply to: Fixed number of random widgets?Hello,
Do you need to show randomly only selected widgets ?
Forum: Themes and Templates
In reply to: [Twenty Sixteen] Display only Post Title on archivesHi,
twentysixteen/template-parts/content.php
Just comment the
<div class="entry-content">….</div>in above file.Forum: Fixing WordPress
In reply to: Is there any user based discount solution?You can use coupons and specify the email address of the customer.
Forum: Plugins
In reply to: [Contact Form 7] Emails aren't sending anymoreYou can contact your hosting support.
Hi,
Can you explain more about your requirement ?
thanks
Forum: Plugins
In reply to: [Contact Form 7] CF7 Dropdown brokenGood, please mark this topic as resolved.