Forum Replies Created
-
AuthorPosts
-
Pratik
ParticipantHi Frank,
Add following code in your child theme’s functions.php file:
function catchflames_child_remove_multi_id() { remove_filter( 'manage_posts_columns', 'catchflames_post_id_column' ); remove_filter( 'manage_pages_columns', 'catchflames_post_id_column' ); remove_action( 'manage_posts_custom_column', 'catchflames_posts_id_column', 10, 2 ); remove_action( 'manage_pages_custom_column', 'catchflames_posts_id_column', 10, 2 ); remove_action( 'admin_head-edit.php', 'catchflames_posts_id_column_css' ); } add_action( 'admin_init', 'catchflames_child_remove_multi_id' );
Let me know how it goes.
Regards,
PratikPratik
ParticipantHi Frank,
Custom css will work. Let me know what exact modification you want to do.
Regards,
PratikPratik
ParticipantHi Frank,
One Id is from theme and other one is from Catch IDs. If you want to remove them, then you need to do it via child theme. If you are comfortable with making modifications via child theme, let me know and I will provide you further codes.Regards,
PratikNovember 20, 2017 at 10:44 pm in reply to: Only one row of my posts displaying in the front page #126469Pratik
Participant@vfxphotog: Did you activate the child theme?
November 20, 2017 at 2:01 am in reply to: Only one row of my posts displaying in the front page #126401Pratik
ParticipantHi @vfxphotog,
That option is not available. If you want to change the number of posts there, then you need to do it via child theme. First, create a child theme. Details for it is here: https://catchthemes.com/blog/create-child-theme-wordpress/
Then, copy verity-pro/template-parts/recent-posts/front-recent-posts.php and paste it in child theme like verity-child/template-parts/recent-posts/front-recent-posts.php. Finally change line 74 in that file
'posts_per_page' => 4,
to any number you want.Pratik
ParticipantHi @vfxphotog,
Archive pages for Portfolio and other post types are generated automatically. You can use portfolio shortcodes and select portfolio via tags or categories. Check https://catchthemes.com/wp-plugins/essential-content-types/
Pratik
ParticipantHi @vfxphotog:
You can do it via page templates. Just goto the edit page of that certain page and select Full Width Template for that page.
Check Screenshot: http://nimb.ws/uvKSBM
Let me know how it goes.
Regards,
PratikNovember 19, 2017 at 11:14 pm in reply to: Only one row of my posts displaying in the front page #126390Pratik
ParticipantHi @vfxphotog,
It looks like you have specified Static Home Page but have not specified a posts page. Please add a page to display as blogs in Dashboard- Settings- Reading- Your homepage displays and select a posts page there.
Check http://nimb.ws/WKPqNp for more info.
Regards,
PratikPratik
Participant@IONadmin: I am glad you worked it out. Reason for the Pro theme’s updating difficulty is because we have to hide pro theme inside a paywall. For free themes, we can just push it to everyone, but for Pro themes, we need to provide the new versions to subscribed users only. Hope you understand.
Regards,
PratikNovember 18, 2017 at 4:30 am in reply to: Only one row of my posts displaying in the front page #126309Pratik
Participant@vfxphotog: Please post in your site url.
Pratik
Participant@IONadmin,
Upgrading pro theme is a bit different process. Please see video https://youtu.be/gVvrbKJNfkE
If you have further trouble, please let me know.Regards,
PratikPratik
Participant@vfxphotog: Can you please post in your site url and link to the page you want to change the width in?
Regards,
PratikPratik
ParticipantHi @catwingz,
It seems you do not need a child theme. Just do following:
1. Add a text widget in Promotion Headline Right Widget Area2. Add following code in that Text Widget in ‘Text’ tab:
<a class="promotion-button mobile" href="tel:123456789">123456789</a> <a class="promotion-button desktop" href="http://distresseddebt1.com/">123456789</a>
Here, you can make 123456789 to your number in tel:123456789. The 123456789 between and is text, whatever you write here, will be displayed as text. The desktop link http://distresseddebt1.com/ can be changed to anything you like as well.
2. Add following code in Appearance- Customize- Additional CSS box:
@media only screen and (max-width:768px) { #promotion-message .promotion-button.desktop{ display: none; } } @media only screen and (min-width:768px) { #promotion-message .promotion-button.mobile{ display: none; } }
This should work. Let me know if you have trouble.
Regards,
PratikPratik
Participant1. Ok got it. Add in following code:
@media screen and (min-width: 1280px){ #header-highlights-content #large-featured-image img { width: 1280px; } }
2. There is some error when adding CSS. This has been added:
.sidebar-header-right p { font-family: 'Oswald', sans-serif; }
You need to add
'Oswald', sans-serif;
instead of the given code.4. If you want different for mobile and different for desktop, then you will need to go via different solution. Add two buttons and show one on desktop and one on mobile. You will need to do quite a bit of modification via child theme. If you are comfortable with using child theme, please let me know and maybe I can help you further.
Regards,
PratikPratik
Participant@mistyfog: Thats great ? If you liked my support, please leave a review at https://wordpress.org/support/theme/adventurous/reviews/#new-post. A simple one line review can help a lot.
Regards,
PratikPratik
Participant@james: Thats great 🙂 If you liked my support, please leave a review at https://wordpress.org/support/theme/adventurous/reviews/#new-post. A simple one line review can help a lot.
Regards,
PratikPratik
Participant@mistyfog: Please follow instructions here: https://catchthemes.com/theme-instructions/adventurous/#enable-featured-slider
Let me know if you face further issues.
Pratik
Participant@catwingz:
1. Please add in the Header Highlight Content and then maybe we adjust it with CSS.2. Try following code:
.sidebar-header-right p { font-family: 'Oswald', sans-serif; }
— My client has the blog posting to the home page. He wants to know if it is possible to make it so that the featured image shows on the home page but not in the post.
To show Featured Images on Homepage but not on posts, it is possible. Since you have already added images on homepage, only issue would be removing it from single page right? For that, goto Appearance- Customize- Theme Options- Layout Options- Single Page/Post Image Layout , then select on Disable Option— What do I need to do to make it so that the button for the promotion headline can be a ‘click to call’ for a phone number?
In Promotion Headline Link add following:tel:8773595319
Let me know if you have any issues.
Pratik
Participant@jhscantonaol-com: Please add following code in Appearance- Customize- Additional CSS:
#header-featured-image { margin-bottom: 25px; }
If you want to increase or decrease space, please try increasing 25px to more or less.
Regards,
Pratik -
AuthorPosts