Biplav
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Catch Base] Responsive WebdesignHello,
Yes it is possible to make you site “un-responsive from responsive”.
But you will have to make the changes on the child theme rather than on the core file of the parent theme, just to keep your tweaks and updates safe and sound. To know more about child themes and view the child theme for this parent theme go to:- http://catchthemes.com/blog/create-child-theme-wordpress/After, that go to the functions.php file on your child theme and paste the following code.
function catchbase_remove_media_queries() { wp_dequeue_style( 'catchbase-responsive' ); } add_action( 'wp_enqueue_scripts', 'catchbase_remove_media_queries', 20 );That might solve your problem.
If you have any more queries and you want quick,fast and reliable response please visit the themes official support forum :- https://catchthemes.com/support-forum/forum/catch-base-free/regards,
bplvForum: Themes and Templates
In reply to: [Catch Base] Fatal errorHello,
Seems like some of your files are missing or seem to be deleted.
Have you tried restoring a fresh backup file or install a new theme completely?Regards,
BPlvForum: Themes and Templates
In reply to: [Catch Base] Changing Slider photosHello,
The demo slider provided by the theme is just for the demo purposes only.
You cannot add or edit its slider but, you can however use page slider for free theme. To use the page slider go to Dashboard => Appearance => Customize =>Featured Slider => Go to the bottom and change the demo slider to page slider. Add the desired page and use it on the slider.But if you only want image slider, but not the page it is possible only in the Pro Version. You can check out more about Catch Base Pro on this link https://catchthemes.com/theme-instructions/catch-base-pro/
To learn how to upgrade to the pro version check https://www.youtube.com/watch?v=gVvrbKJNfkE
regards,
bplvForum: Themes and Templates
In reply to: [Catch Base] Removing menu from above header imageHello mlesoing,
I checked your website. You seem to have already fixed your problem.Please contact again if you face any problem.
Regards,
BplvForum: Themes and Templates
In reply to: [Create] can not sent mail for new userHello,
Your question is quite unclear.
Could you please specify what is wrong with the mailing function and who are you trying to mail ?
Does your site has registration form or registration processes to send mail to new user. Or by user you are referring to users with dashboard access?
Because by the look of it, Your website doesn’t seem to have any registration or contact form plus you seem to be using twenty-fifteen theme.
Please contact if you have any queries,regards,
bplvForum: Themes and Templates
In reply to: [Catch Responsive] How to turn off display screen tipsHello Newtan,
To edit any theme files, please build child theme first. You shouldn’t edit any theme files directly, as when you update the theme, all your edits will be reverted back to original. So, to be safe always build child theme, you can download the sample child theme ( https://catchthemes.com/blog/create-child-theme-wordpress/ ) and then you could go to the inc folders there and open the clean-journal-featured-slider.php . Then find and copy the whole
function clean_journal_page_slider( $options ) {function and paste it in the functions.php of the child theme.OR you could use the pro version and use the featured image with no link to remove the alt text and also use other features of the PRO version. You can follow this link for more information.
https://catchthemes.com/theme-instructions/catch-responsive-pro/Regards,
BplvForum: Themes and Templates
In reply to: [Full Frame] Always show blog titleHello,
I can’t seem to understand your question. Do you want to show the site title, in all pages or do you just want to show it on the home page?Regards, Bplv
Forum: Themes and Templates
In reply to: [Gridalicious] Move comments link etc. to bottom of postHello,
The problem to your solution could be solved by using a child theme as if you make changes in your parent theme, it will vanish after an update of the theme.
To see how to create a child theme or to download a child theme of this theme please follow the link http://catchthemes.com/blog/create-child-theme-wordpress/After creating a child theme copy the parent themes content-single.php into the child theme. Open the content-single.php and cut the whole code of line number 23 and paste it on line number 37 (just above the footer tag)
This should generate your desired result.Regards,
BplvForum: Themes and Templates
In reply to: [Gridalicious] Replacing Social Media IconsHello,
Please don’t try and modify the themes core files. If you do so all your changes will be removed once the theme is updated. If you want to make your own changes please build/download and use a child theme.
You can see how you can build a child theme in this link http://catchthemes.com/blog/create-child-theme-wordpress/
And If you want to download a Child theme of the current theme you can see on the bottom of the page of the above link.But I recommend you to use CATCH WEB TOOL plugin.
Install and activate it, Then go to dashboard => Catch Web Tools => Social Icons =>Enable It => move to the bottom and place the URL of your social icons => save your changes . Then finally, from the Widget option, add the CWT: SOCIAL ICONS widget to your preferred sidebar.regards,
bplvForum: Themes and Templates
In reply to: [Full Frame] Excessive H1 HeadersHello,
Do you still have this problem?
If you do, can you please post a link to your website.Regards,
BplvForum: Themes and Templates
In reply to: [Full Frame] How to translate the Homepage using PolylangHello,
First of all youll be needing to create a child theme for that purpose.
If you need help creating child themes refer http://catchthemes.com/blog/create-child-theme-wordpress/
and then write the below given code on child theme’s function.php for each theme’s string
pll_register_string('Theme's string', 'Translated string');Next Once your strings are registered, your users can translate them in the “Strings Translation” tab. But you still need a way to retrieve them, in order to display the right translation. We’ll be using Polylang theme strings plugin (https://wordpress.org/plugins/polylang-theme-strings/) that finds all the strings that needs to be translated, adds them to the register and display them on that page to give the user the ability to translate these strings.
regards,
BplvHello,
You can customize the excerpts on Dashboard => Appearance => Customize => Theme Options => Excerpts Options => And Select the number of words you want to displayRegards,
BplvForum: Themes and Templates
In reply to: [Full Frame] Remove Footer LinkHello ,
Removing the theme’s default footer text is not available in free themes but you could edit theme’s file to do so.
HOWEVER,
To edit any theme files, please build child theme first. You shouldn’t edit any theme files directly, as when you update the theme, all your edits will be reverted back to original. So, to be safe always build child theme, you can download the sample child theme ( https://catchthemes.com/blog/create-child-theme-wordpress/ ) and then you could use this function in your child theme’s function.php to unhook the whole footer text:function unhook_functions() { remove_action( 'fullframe_footer','fullframe_get_footer_content',110); } add_action( 'init', 'unhook_functions' );But if you only want to edit the footer text and remove the theme author’s default credits, you will have to upgrade to pro, you can see all the features of the PRO version https://catchthemes.com/theme-instructions/catch-responsive-pro/
If you want to upgrade to pro please see https://www.youtube.com/watch?v=gVvrbKJNfkE
The link to the Pro Version Of the theme is https://catchthemes.com/themes/full-frame-pro/
regards,
bplvHello,
Do you still have this problem?
If you do, can you please post a link to your website.Regards,
BplvForum: Themes and Templates
In reply to: [Full Frame] Page with no SidebarHello,
If you want page with no sidebar you can go toDashboard => Appearance => Theme Options => Layout Options => Default layout Options and select no sidebar (content width)
regards,
bplv