Bhavin Patel
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Remove the post date.You should give us page link so we can help you.
you can apply this code too.
.entry-meta {
display: none;
}Forum: Fixing WordPress
In reply to: How to exclude id in the loop?you have to num = 0; before second loop
if in first loop num = 10 then in second loop num stars from 10
Forum: Themes and Templates
In reply to: Can't save changes on theme optionsHi,
Which one you had bought?May be you can change from wp-admin’s theme-options
Forum: Themes and Templates
In reply to: [Hueman] Wrong sidebarthat code put in your sidebar page
Forum: Themes and Templates
In reply to: jQuery Datepicker can't select a date$(function(){ $('.datepickerclass').on('click', function() { $(this).datepicker({showOn:'focus'}).focus(); }); });
[Please use backticks for code]
Forum: Themes and Templates
In reply to: jQuery Datepicker can't select a dateuse button icon and write this code.
Hope this may be work$('.fromDatePicker').datepicker({ // existing options showOn: "both", buttonImage: "images/calendar_icon_a1.jpg", buttonImageOnly: true });
Forum: Themes and Templates
In reply to: [Hueman] Wrong sidebar<aside id=”archives” class=”widget”>
<?php
$categories = get_categories();
$c = count($categories);for($i = 0 ;$i < $c ; $i++)
{
?>- <h1 class=”widget-title”>
- guid ?>”><?php echo $p -> post_title; ?>
<?php echo $categories[$i] -> name; ?> </h1>
<?php $k = $categories[$i] -> cat_ID; ?><?php
$photog_posts = get_posts(‘category=’.$k);
foreach($photog_posts as $p)
{
?><?php
}wp_reset_query();
?></br> <?php } ?>
</aside>Forum: Themes and Templates
In reply to: [Blanc] "Continue shopping" button; no responsefind this file ::– woocommerce\includes\wc-cart-functions.php
and find this line
$message = sprintf(‘%s %s’, $return_to, __( ‘Continue Shopping’, ‘woocommerce’ ), $added_text );
edit to this ::
print %s and check if null then
$message = sprintf(‘%s %s’, $return_to, __( ‘Continue Shopping’, ‘woocommerce’ ), $added_text );
Forum: Themes and Templates
In reply to: [Hueman] Wrong sidebarAre you using page template for it then write your code for fetch then menu ??
or which plugin are you used ??
Forum: Themes and Templates
In reply to: [Nirvana] Sidebar on Presentation PageMake sure your Parabola Settings have Presentation Page > Enable Presentation Page to Enable.
Go to Settings > Reading and on Front Page Displays, choose “Your Latest Posts”.
Forum: Themes and Templates
In reply to: jQuery Datepicker can't select a dateif (nodeName == 'input') { this._connectDatepicker(target, inst); } else if (inline) { this._inlineDatepicker(target, inst); }
put this code to your jQuery.datepicker
Forum: Plugins
In reply to: [Contact Form 7] On_sent_ok not redirectingi get success for this code
remove your full url only write short term
on_sent_ok: “document.location=’?page_id=345′;”
on_sent_ok: “document.location=’/step-2/’;”