janak Kaneriya
Forum Replies Created
-
Hi,
Thanks for your response.
I am marking this topic as an unresolved until I get that actually resolved.
Adding a query on your page.
Once my query will be resolved I will mark it resolved and leave a review about the experience about your support system.
Thanks
Forum: Plugins
In reply to: [Front End PM] Major issueGit it !!!
Resolved. ??
Hi Tatvic,
Thank you for the quick response.
If I consider the paid plugin do you guarantee that it will work? If not do you provide end user support to make it work completely with our child theme?
Even free plugin is working fine but there are some discrepancies.
Also, before buying the paid plugin can I try to check it’s working with our theme?
Forum: Plugins
In reply to: [Front End PM] DB errorHi Shamim,
After 3-4 tries, it worked !!!
Thanks for awesome plugin.
You can mark it as resolved.
Regards
Forum: Plugins
In reply to: [Front End PM] Multiple PM pagesForum: Plugins
In reply to: [Front End PM] Multiple PM pagesHi Shamim,
I got it working by this filter. ‘fep_page_id_filter’
But still, I want to know if it causes any problem.
Thanks.
- This reply was modified 6 years, 6 months ago by janak Kaneriya.
Forum: Fixing WordPress
In reply to: WordPress: Woocomerce Internal Sever ErrorHello idosoft,
It’s because of Woocommerce deprecated some methods in the new version, but your existing code in plugins or theme are using the old methods to get the cart data that’s why you are receiving this notice.
Best way to ignore this type of notices is to check all the plugins and theme with the new version of the WooCommerce before making live.
I hope this finds you well with your concern.
Forum: Fixing WordPress
In reply to: Query Post with Custom Field ValuesHello,
Try below code.
However you have to check date format in data base to make below query working.$args = array( 'post_type' => 'tour', 'order' => 'ASC', 'orderby' => 'meta_value', 'posts_per_page' => -1, 'meta_query' => array( array( 'key' => 'start_date', 'value' => date('Y-m-d'), 'compare' => '>=', 'type' => 'NUMERIC' ) ) ); $my_query = new WP_Query( $args );
- This reply was modified 7 years ago by janak Kaneriya.
Forum: Fixing WordPress
In reply to: Username in the end of the link how?Forum: Everything else WordPress
In reply to: Why do people help for free?WordPress is community where people share their ideas and thoughts to make your website stuffs more simpler whether it’s relate to your blog or anything.
Of corse they hire some people for this kind of job but mostly people are here to share their knowledge.
According to my knowledge Community is not something that you are working for or working in it’s something about you are working with.
As it’s off topic we can extend as much as we can.
Although WordPress arranging WordCamp over the glob just attend any of near you. You will have more ideas about it.
WordCampsI hope you will find it helpful.
- This reply was modified 7 years ago by janak Kaneriya.
- This reply was modified 7 years ago by janak Kaneriya.
Forum: Fixing WordPress
In reply to: Selectively Hide Post Title on Homepage & Singular Viewyou would need a help of developer for this task.
or you can hide title by post id which you have mentioned above.
i.e :
#post-402 .entry-title {display: none;}
- This reply was modified 7 years ago by janak Kaneriya.
Forum: Fixing WordPress
In reply to: Selectively Hide Post Title on Homepage & Singular ViewHello @katielems,
Take my opinion you would need custom coding because you only want to hide the title of the post which have the post title in their images.
So take one custom metabox(checkbox) mark it if it’s image has a post title and make condition for the title where you are showing your post.
and if your CSS is correct so please try by clearing the cache of your browser.
- This reply was modified 7 years ago by janak Kaneriya.
- This reply was modified 7 years ago by janak Kaneriya.
Forum: Fixing WordPress
In reply to: Selectively Hide Post Title on Homepage & Singular ViewHello @katielems,
The CSS you are using is correct for both home page and the singular and it should work.
But, i want to draw your attention with Post id(#post-334) which is different for each post. so you have to write display none CSS for each each or you can handle it from backend with the checkbox the image already has title of post and you can accordingly hide the title for specific post.Forum: Fixing WordPress
In reply to: Plugin for multiple search fieldsHello @embermike,
According to my knowledge this would be custom coding because you need something like that can read the PDF file also i am not sure if the PDF file can be readable through the coding because there are different thing in PDF like images, tables, links etc also the encoding of the PDF file, password protected PDF and other things.
- This reply was modified 7 years ago by janak Kaneriya. Reason: more specific about question
Forum: Fixing WordPress
In reply to: Images in posts are not responsiveHello @igts17,
Can you please create both scenario on test page and provide url so i can check and let you know also let me know how you are adding caption to image.