Catch Themes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Catch Box] Problem with slider in IE@andrew Nevins: Thanks for your message.
@wpyogi: Yes that good to check with the validator to find our the issues. But it’s sad that the validator itself is in experimental phase for HTML5. So, it shows error even for valid HTML5 code.
@chochonet: Yes you can use our forum. I wanted to give you answer there but I don’t understand the issue. Maybe you might consider sending more details about the issue.
Forum: Themes and Templates
In reply to: [Catch Box] Remove slider.js completely@noearthling: just remember this setting if you have done edits in you core theme file. So, whenever there is update. You can just do it..
Forum: Themes and Templates
In reply to: [Catch Box] Remove slider.js completely@noearthling: in theme fucntion.php you will see the below code:
/** * Register jquery scripts * * @register jquery cycle and custom-script * hooks action wp_enqueue_scripts */ function catchbox_scripts_method() { //Register JQuery circle all and JQuery set up as dependent on Jquery-cycle wp_register_script( 'jquery-cycle', get_template_directory_uri() . '/js/jquery.cycle.all.min.js', array( 'jquery' ), '2.9999.5', true ); //Enqueue Slider Script only in Front Page if(is_home() || is_front_page()) { wp_enqueue_script( 'catchbox_slider', get_template_directory_uri() . '/js/catchbox_slider.js', array( 'jquery-cycle' ), '1.0', true ); } wp_enqueue_script('catchbox-menu', get_template_directory_uri() . '/js/catchbox-menu.min.js', array('jquery'), '1.1.0', true); //Browser Specific Enqueue Script i.e. for IE 1-6 $catchbox_ua = strtolower($_SERVER['HTTP_USER_AGENT']); if(preg_match('/(?i)msie [1-6]/',$catchbox_ua)) { wp_enqueue_script( 'catchbox-pngfix', get_template_directory_uri() . '/js/pngfix.min.js' ); } //browser specific queuing i.e. for IE 1-8 if(preg_match('/(?i)msie [1-8]/',$catchbox_ua)) { wp_enqueue_script( 'catchbox-html5', get_template_directory_uri() . '/js/html5.js' ); } } // catchbox_scripts_methodReplace this with the following:
/** * Register jquery scripts * * @register jquery cycle and custom-script * hooks action wp_enqueue_scripts */ function catchbox_scripts_method() { /* //Register JQuery circle all and JQuery set up as dependent on Jquery-cycle wp_register_script( 'jquery-cycle', get_template_directory_uri() . '/js/jquery.cycle.all.min.js', array( 'jquery' ), '2.9999.5', true ); //Enqueue Slider Script only in Front Page if(is_home() || is_front_page()) { wp_enqueue_script( 'catchbox_slider', get_template_directory_uri() . '/js/catchbox_slider.js', array( 'jquery-cycle' ), '1.0', true ); } */ wp_enqueue_script('catchbox-menu', get_template_directory_uri() . '/js/catchbox-menu.min.js', array('jquery'), '1.1.0', true); //Browser Specific Enqueue Script i.e. for IE 1-6 $catchbox_ua = strtolower($_SERVER['HTTP_USER_AGENT']); if(preg_match('/(?i)msie [1-6]/',$catchbox_ua)) { wp_enqueue_script( 'catchbox-pngfix', get_template_directory_uri() . '/js/pngfix.min.js' ); } //browser specific queuing i.e. for IE 1-8 if(preg_match('/(?i)msie [1-8]/',$catchbox_ua)) { wp_enqueue_script( 'catchbox-html5', get_template_directory_uri() . '/js/html5.js' ); } } // catchbox_scripts_methodForum: Themes and Templates
In reply to: [Simple Catch] URLs in excerpts are disabled@bestofsumit: It’s the WordPress function the_excerpt() which removes the links. So, maybe this plugin will help you http://wordpress.org/extend/plugins/advanced-excerpt/
Forum: Themes and Templates
In reply to: [Catch Box] How to change main slider gray background?Thanks to all.
Forum: Themes and Templates
In reply to: [Catch Box] comment are not showinggreat it worked for you…
Forum: Themes and Templates
In reply to: [Catch Box] Remove slider.js completely@noearthling: It’s pretty simple.
Go to Theme Options -> Featured Slider -> Slider Options.
Then in number of slides. Type in 0. This will remove all the ids in the slider and then if the slider doesn’t find any ids it will simply be disabled.Forum: Themes and Templates
In reply to: [Catch Box] Featured Slider & Image Stopped Showinggreat it worked for you.
Forum: Themes and Templates
In reply to: [Simple Catch] URLs in excerpts are disabled@bestofsumit: I don’t get your question. Sorry can you elaborate more or show me example.
Forum: Themes and Templates
In reply to: [Simple Catch] remove commen@streetnet: If you want to remove comments in your page or post. Then you have the option below your page and post editors. There is Discussion Box: Where you can just uncheck “Allow Comments” and save it.
Forum: Themes and Templates
In reply to: [Simple Catch] Make Featured Slider appear on all pages?yes you need to build child theme and then customize function simplecatch_sliderbreadcrumb() and simplecatch_scripts_method() where you have to remove if condition:
if ( is_home() || is_front_page() )If you are still confused with the code and want easy click option then you can upgrade to Simple Catch Pro Theme.
Forum: Themes and Templates
In reply to: [Simple Catch] Changing colours of the social icons@jpetznick: This is actually css Sprites Image. So, you will not find a color. This is done through the position of this image social-profile.png
#header .social-search ul.social-profile li a { background: url(images/social-profile.png) right bottom no-repeat; display: block; height: 33px; width: 33px; text-indent: -99999px; }@vosmmr: If you are good at customizing then you can remove the filter and caret new one in your child theme. This is the filter which adds the footer text:
add_filter( 'simplecatch_credits', 'simplecatch_footer' );But if you just want a footer editor to simply edit the footer text without touching code then you have option to upgrade to Simple Catch Pro Theme.
Forum: Themes and Templates
In reply to: [Simple Catch] [Theme: Simple Catch] Change Slider Size@silico26: I see that you have used Simple Catch Pro theme where there is option to use Image Slider. In this image slider you can change to any size. Just upload the bigger size image and it’s all fine.
Forum: Themes and Templates
In reply to: [Simple Catch] [Theme: Simple Catch] Version Update@zahra.bajgiran: First start new thread for support. This thread is for update notice. It’s strange why you cannot use excerpt and link. It will be there by default. See this http://catchthemes.com/demo/simplecatch/ . If you want support then send me details in another thread.