wprock
Forum Replies Created
-
Forum: Plugins
In reply to: [YITH WooCommerce Quick View] Composite Product is not loadingHello
Can I get a response?
Forum: Plugins
In reply to: [YITH WooCommerce Quick View] Composite Product is not loadingThank you. When it will be done? Any idea?
Forum: Themes and Templates
In reply to: [Twenty Fourteen] Only posts from one categoryReplace
$query->set( 'cat', get_cat_ID('265'));by
$query->set( 'cat', 265 );Forum: Plugins
In reply to: [Testimonials] Missing spot to upload imagesUse the featured image option. Then Author image will come.
Forum: Plugins
In reply to: [Testimonials] using read more in testimonialsYes. You will get 404 error. Right now I am publicly disable the details page. Open the cpt.php file and change the following line
'public' => false,by
'public' => true,Now go to Dashboard > Settings > Permalinks page and re-save the permalink structure. Then it will work
Forum: Fixing WordPress
In reply to: For a Complete Beginner, Where Are All My Folders?are you read the full instruction? You will create a child theme folder in wp-content/themes folder. Then you’ll add the style.css, functions.php file. If you need any other file then you’ll create them and upload in your child theme folder.
Forum: Plugins
In reply to: [Contact Form 7] Still wpcf7_mail_components is working on new version?@buzztone Thanks for your reply. I already knew this rule.Thank you.
Forum: Plugins
In reply to: [Contact Form 7] Still wpcf7_mail_components is working on new version?Can I get any response from anybody or plugin’s author?
Forum: Plugins
In reply to: [Contact Form 7] Still wpcf7_mail_components is working on new version?Sorry for the double post.
Actually I am working on a Client site. Previous dev added a text ([tracker-info]) in Contact Form 7’s body section. Then he wrote a filter in functions.php file and replacing that text([tracker-info]) with other informatio. Here is the original code:
/* * Beform Email SEND Function * */ function addToEmail($array) { global $wpdb; if(wpautop($array['body']) == $array['body']) // The email is of HTML type $lineBreak = "<br/>"; else $lineBreak = "\n"; $piece = ''; if(isset($_SESSION['piece_url'])) { $piece .= 'PIECE URL :' . $_SESSION['piece_url']; unset($_SESSION['piece_url']); } $array['body'] = str_replace('[tracking-info]', $piece, $array['body']); return $array; } add_filter('wpcf7_mail_components', 'addToEmail');When I am submitting the form, I am not getting any info for this text ([tracker-info]). This function wpcf7_mail_components is valid in the latest version. Or how to replace the mail body text with my $piece value?
Best
ChinmoyForum: Plugins
In reply to: [Testimonials] Custom TaxonomiesThanks for your hard work. Your trick will help to other people.
Thanks for your reply. Yes. I can wait for next release.
You are using a plugin for post excerpt. if yes then you will contact with that plugin’s developer about it.
Otherwise you can disable the plugin and add the custom code for excerpt in your functions.php file with some filter option. If you search on net then you will get the code for excerpt.
are you copied the code from your activated theme’s folder?
header.entry-header { margin-right: 54px; max-width: 507px; }Try the above code. Are you wanting this?
First create a child theme and put the following code in your CSS file
.archive-header, .comments-area, .image-navigation, .page-header, .page-content, .post-navigation, .site-content .entry-header, .site-content .entry-content, .site-content .entry-summary, .site-content footer.entry-meta { margin-right: 0; } .site-content .entry-header, .site-content .entry-content, .site-content .entry-summary, .site-content .entry-meta, .page-content { max-width: 612px; }Based on this changes you will take care of responsive design.