Mahesh Waghmare
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Bhari] Widget widthHope the issue is resolved. So closing the ticket. Re-open it if you have another issue.
Forum: Themes and Templates
In reply to: [Bhari] Widget widthThanks for sharing.
If you want to change the
sidebar
width then you need to change thecontent
width too. Both are depended on each other.E.g. I have to change the sidebar width to
40%
then I need to set the content width to60%
. Use CSS to change the sidebar width.@media screen and (min-width: 768px) { .layout-sidebar-content #primary { width: 60%; left: 40%; } .layout-sidebar-content #secondary-left, .layout-sidebar-content #secondary-right { width: 40%; left: -60%; } }
Screenshot:
- This reply was modified 7 years ago by Mahesh Waghmare. Reason: Added screenshot
Forum: Themes and Templates
In reply to: [Bhari] Widget widthCan you please share your website URL? I’ll check it and provide a valid solution.
Forum: Themes and Templates
In reply to: [Bhari] Widget widthWidget width? Do you mean sidebar width? You can only change the container width. The sidebar and the content width automatically decided in the ratio.
Do you want to set custom width for sidebar?
Forum: Themes and Templates
In reply to: [Bhari] Gravatar not working on my siteOh! I have not get any notification regarding the support.
Okay. Maybe your article author has different email. Looks like your website is not working. Can you please check it once.
Is “Shortcodes” plugin in your
mu-plugins
directory?Forum: Reviews
In reply to: [Bhari] Simple and yet very beautiful Theme For BloggerThanks a lot @danybr0.
Forum: Themes and Templates
In reply to: [Bhari] Enable sidebar on postsForum: Themes and Templates
In reply to: [Bhari] Beautify the default widgetHi @dungtan,
Do you mean widget typography? Widget Boxed layouts?
Can you please elaborate more? So, I’ll help you.
Forum: Reviews
In reply to: [Bhari] I love themeYes. I’ll implement all the possible features specially for Bloggers ( Who love to write article. )
Recently, I was also facing this issues. I was trying to get the recent posts by category.
Below is the code snippet:
global $post; $recent_posts = wp_get_recent_posts( array( 'numberposts' => $number, 'category' => $category, 'post_status' => 'publish' ) ); foreach( $recent_posts as $post ){ echo $post["post_title"]; }
Here, First I was trying to get posts by the query. So, used
global $post;
.
After that, I found thewp_get_recent_posts()
. But, I was forgot to removeglobal $post;
. Also, In forforloop
the variable $post is used.For that, the issue was arisen. So, Removed
global $post
and updated variable$post
from foreach loop with$recent_post
like this:$recent_posts = wp_get_recent_posts( array( 'numberposts' => $number, 'category' => $category, 'post_status' => 'publish' ) ); foreach( $recent_posts as $recent_post ){ echo $recent_post["post_title"]; }
—-
Hope it helps.
Forum: Plugins
In reply to: [Screenshot Generator] Screenshot GeneratorThis plugin concept is awesome. But not working.
I set different shipping methods as per state based with your conditional state wise.
E.g.
1. For Texas – $34.63
2. For Utah – $14.47
etc.So, I have a shipping state dropdown on checkout page. I make a AJAX call on state select dropdown. Which retrieve me the current selected state. So, How can I get the shipping cost of from WAFS e.g. $34.63 for Texas or $14.47 for Utah etc.
Aim, Is to show selected state shipping cost on checkout page via AJAX call.
Or these is any shortcode to pass state and get available shippings for that state.
Forum: Plugins
In reply to: [WordPress Reset] WordPress Reset & Multisite WordPressHello,
I have same issue. Can we use
WordPress Reset
on multisite environment?Forum: Reviews
In reply to: [MG Parallax Slider] very good appHi Levian,
Thanks for appreciation. We will add this option in our upcoming update. Please get in touch with us.