Catch Themes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Simple Catch] [Theme: Simple Catch] How to remove page title?@rebecca-g: can you send me your site URL and then I will send you the custom css to add it in your Theme Options page.
@christopher2: I am not being able to see your screenshot. Can you send me your site URL and your problem in details.
Also before replying please download the latest version and check it.
great
@jonatanb and all: the path is coming soon in version 1.5.5 . For now you can replace your copy of function.php with this one http://themes.svn.wordpress.org/catch-box/1.5.5/functions.php and your style.css with this one http://themes.svn.wordpress.org/catch-box/1.5.5/style.css
This is the version update.
Forum: Themes and Templates
In reply to: [Catch Box] Catch Box – Fill content in Disable Sidebar mode@jonatanb: I will be giving you the answer in different thread. This thread is now being confusing. So, I am closing down. Please add new one if you need help.
@alejjo: You can just hide it by adding the following css in “Custom CSS” box at Appearance -> Theme Options -> Custom CSS
.home .default-wp-page { display: none; }Forum: Themes and Templates
In reply to: [Simple Catch] Featured Slider not updating@krodri93: can you tell me what is the error you are getting? You should be able to change it to any post ID.
Forum: Themes and Templates
In reply to: [Simple Catch] Fatal Error@rjztv1: I don’t know what you changed. So, the best option at this time will be to delete your simple-catch folder using FTP and your site will load the default theme. Then download the fresh copy of Simple Catch and install it.
Forum: Themes and Templates
In reply to: [Simple Catch] [Theme: Simple Catch] breadcrumbs@ram108: catch box doesn’t have breadcrumb. After you install the Breadcrumb NavXT plugin you need to manually add in.
Forum: Themes and Templates
In reply to: [Simple Catch] [Theme: Simple Catch] Version UpdateSimple Catch Version 1.4.8 is out now for download.
http://wordpress.org/extend/themes/download/simple-catch.1.4.8.zip
Change Log:
* Fixed simplecatch.pot file for comment form labelsForum: Themes and Templates
In reply to: [Catch Box] [Theme: Catch Box] Version UpdateCatch Box Version 1.5.4 is out now for download.
http://wordpress.org/extend/themes/download/catch-box.1.5.4.zip
Change Log for 1.5.4 is as below:
* Fixed Default Layout and Page Template Issue with body_class filterHi Sam,
When you select the One Column with no sidebar then the display that is showing in http://www.averygallery.com/wordpress/ is correct.
But id you want to show the full width then you can add the following css in “Custom CSS” Box in your Theme Option under Appearance Tab in WordPress Dashboard:
.one-column #page { max-width: 690px; }Regards,
Sakin@luichy: # means it will link to # of homepage but the slider is in homepage so it just like removing the link. If you want to totally remove the link then you have to delete whole line
$simplecatch_sliders .= '<a href="' . get_permalink() . '" title="Permalink to '.the_title('','',false).'">';and in the following line just delete .”
$simplecatch_sliders .= get_the_post_thumbnail( $post->ID, 'slider', array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ), 'class' => 'pngfix' ) ).'</a>';@silico26: I mean you need to clear the cache by delete_transient which you don’t need to code it but can change any setting fields in Slider option from your WordPress Dashboard otherwise you have to wait for 24 hours to clear the cache.
@silico26 : you can just replace ‘ . get_permalink() . ‘ with # . see it below:
$simplecatch_sliders .= '<a href="#" title="Permalink to '.the_title('','',false).'">';After you make the change, you need to clear the cache set by
set_transient( 'simplecatch_sliders', $simplecatch_sliders, 86940 );So, to clear the cache you can change any value in Slider option from your WordPress Dashboard.