Viewing 20 results - 701 through 720 (of 2,398 total)
  • Author
    Search Results
  • #94587

    In reply to: Where is slider?

    Dave
    Participant

    Below is what another poster said in another post. It is exactly what I am seeing. Something is missing from my Customizing Featured Slider page. But she received no reply, so I continue to seek an answer. – Dave

    <<The only thing I’m seeing is: Enable Slider on: Homepage/Frontpage. None of the other usual options are visible.<<

    #94417

    In reply to: Polylang issues

    Pratik
    Participant

    @huca: Do you mean the slider? You can enable it in entire site by going to Appearance=> Customize=> Featured Slider => Enable Slider On and selecting entire site.

    If this is something else, please let me know.

    #94343

    In reply to: Flags in header

    Huca
    Participant

    this is the whole function.php code, since I was also making some other changes from another thread, where you help me. But none of these actually works, so maybe I did something somewhere wrong?

    
    <?php
    /**
     * Child Theme functions and definitions
     *
     */
    
    /**
     * Loading Parent theme stylesheet
     *
     */
    add_action( 'wp_enqueue_scripts', 'catchresponsive_child_enqueue_styles' );
    function catchresponsive_child_enqueue_styles() {
        wp_enqueue_style( 'catchresponsive-parent-style', get_template_directory_uri() . '/style.css' );}
    
       
    
    if ( ! function_exists( 'catchresponsive_polylang_invalidcache' ) ) :
    /**
     * Template for Clearing Polylang Invalid Cache
     *
     */
    function catchresponsive_polylang_invalidcache() {
    	delete_transient( 'catchresponsive_featured_slider' );	
    } // catchresponsive_polylang_invalidcache
    endif;
    add_action( 'after_setup_theme', 'catchresponsive_polylang_invalidcache' );
    
    /**
     * Get the logo and display
     *
     * @uses get_transient, catchresponsive_get_theme_options, get_header_textcolor, get_bloginfo, set_transient, display_header_text
     * @get logo from options and make it polylang compatible
     *
     * @display logo
     *
     * @action
     *
     * @since Catch Responsive 1.0
     */
    function catchresponsive_site_branding() {
    	$options 			= catchresponsive_get_theme_options();
    
    	$catchresponsive_site_logo = '';
    	//Checking Logo
    	if ( function_exists( 'has_custom_logo' ) ) {
    		if ( has_custom_logo() ) {
    			$custom_logo_id = get_theme_mod( 'custom_logo' );
    			$image          = wp_get_attachment_image_src( $custom_logo_id , 'full' );
    
    			$catchresponsive_site_logo = '
    			<div id="site-logo">
    				<a href="' . esc_url( pll_home_url() ) . '" title="' . esc_attr( get_bloginfo( 'name', 'display' ) ) . '" rel="home">
    					<img src="' . esc_url( $image ) . '" alt="' . esc_attr( get_bloginfo( 'name', 'display' ) ) . '">
    				</a>
    			</div><!-- #site-logo -->';
    
    		}
    	}
    	else if ( '' != $options['logo'] && !$options['logo_disable'] ) {
    		$catchresponsive_site_logo = '
    		<div id="site-logo">
    			<a href="' . esc_url( home_url( '/' ) ) . '" title="' . esc_attr( get_bloginfo( 'name', 'display' ) ) . '" rel="home">
    				<img src="' . esc_url( $options['logo'] ) . '" alt="' . esc_attr(  $options['logo_alt_text'] ). '">
    			</a>
    		</div><!-- #site-logo -->';
    	}
    
    	$catchresponsive_header_text = '
    	<div id="site-header">
    		<h1 class="site-title"><a href="' . esc_url( home_url( '/' ) ) . '">' . get_bloginfo( 'name' ) . '</a></h1>
    		<h2 class="site-description">' . get_bloginfo( 'description' ) . '</h2>
    	</div><!-- #site-header -->';
    
    	$text_color = get_header_textcolor();
    
    	$catchresponsive_site_branding	= '<div id="site-branding">';
    	$catchresponsive_site_branding	.= $catchresponsive_header_text;
    
    	if ( function_exists( 'has_custom_logo' ) ) {
    		if ( has_custom_logo() ) {
    			if ( ! $options['move_title_tagline'] && 'blank' != $text_color ) {
    				$catchresponsive_site_branding  = '<div id="site-branding" class="logo-left">';
    				$catchresponsive_site_branding .= $catchresponsive_site_logo;
    				$catchresponsive_site_branding .= $catchresponsive_header_text;
    			}
    			else {
    				$catchresponsive_site_branding  = '<div id="site-branding" class="logo-right">';
    				$catchresponsive_site_branding .= $catchresponsive_header_text;
    				$catchresponsive_site_branding .= $catchresponsive_site_logo;
    			}
    		}
    	}
    	else if ( '' != $options['logo'] && !$options['logo_disable'] ) {
    		if ( ! $options['move_title_tagline'] && 'blank' != $text_color ) {
    			$catchresponsive_site_branding  = '<div id="site-branding" class="logo-left">';
    			$catchresponsive_site_branding .= $catchresponsive_site_logo;
    			$catchresponsive_site_branding .= $catchresponsive_header_text;
    		}
    		else {
    			$catchresponsive_site_branding  = '<div id="site-branding" class="logo-right">';
    			$catchresponsive_site_branding .= $catchresponsive_header_text;
    			$catchresponsive_site_branding .= $catchresponsive_site_logo;
    		}
    	}
    
    	$catchresponsive_site_branding 	.= '</div><!-- #site-branding-->';
    
    	echo $catchresponsive_site_branding ;
    }
    
    /**
     * Function to override parent function 
     */
    function catchresponsive_header_right() {
    	?>
    	<aside class="sidebar sidebar-header-right widget-area">
    		<section class="widget widget_search" id="header-right-search">
    			<div class="widget-wrap">
    				<?php echo get_search_form(); ?>
    			</div>
    		</section>
    		<?php if ( '' != ( $catchresponsive_social_icons = catchresponsive_get_social_icons() ) ) { ?>
    			<section class="widget widget_catchresponsive_social_icons" id="header-right-social-icons">
    				<div class="widget-wrap">
    					<?php echo $catchresponsive_social_icons; ?>
    				</div><!-- .widget-wrap -->
    			</section><!-- #header-right-social-icons -->
    		<?php
    		} ?>
    		<?php if ( function_exists( 'pll_the_languages' ) ) { ?>
    			<section class="widget">
    				<div class="widget-wrap">
    					<?php pll_the_languages( array( 'show_flags' => 1, 'show_names' => 0 ) );?>
    				</div><!-- .widget-wrap -->
    			</section><!-- #header-right-social-icons -->
    		<?php
    		} ?>
    	</aside><!-- .sidebar .header-sidebar .widget-area -->
    	<?php
    }
    
    #94328

    In reply to: Simple Catch Pro

    Pratik
    Participant

    @tivonjohnson;

    For that you can use following code in Appearance=> Customize=> Theme Options=> Custom CSS box:

    
    #main-slider .featured-img a img {
        width: 100%;
    }
    

    Let me know how it goes.

    Regards,
    Pratik

    #94280

    In reply to: Polylang issues

    Huca
    Participant

    1) yes. code is here:

    `<?php
    /**
    * Child Theme functions and definitions
    *
    */

    /**
    * Loading Parent theme stylesheet
    *
    */
    add_action( ‘wp_enqueue_scripts’, ‘catchresponsive_child_enqueue_styles’ );
    function catchresponsive_child_enqueue_styles() {
    wp_enqueue_style( ‘catchresponsive-parent-style’, get_template_directory_uri() . ‘/style.css’ );}

    if ( ! function_exists( ‘catchresponsive_polylang_invalidcache’ ) ) :
    /**
    * Template for Clearing Polylang Invalid Cache
    *
    */
    function catchresponsive_polylang_invalidcache() {
    delete_transient( ‘catchresponsive_featured_slider’ );
    } // catchresponsive_polylang_invalidcache
    endif;

    3) you mean the Polylang?

    #94174

    In reply to: Polylang issues

    Huca
    Participant

    2) well it´s not just featured slider, it´s an image that appears the same for both pages. Or you mean this is an issue of Polylang because it´s using the same image?

    #94173

    In reply to: Polylang issues

    Pratik
    Participant

    @huca:
    2) I meant the image used from theme, which is then used to featured slider. I believe this is not any plugin´s issue, but template only?
    I am afraid, the featured slider will not work that way. If you want that sort of functionality, you will need to hire a customizer and do some custom work.

    3) disabled caching plugin, but no change, this is really weird as I look at it in the same way that it should work in the same way as the text :/
    It uses the same code as the text so this is very strange issue indeed. I will net you know if I come up with anything.

    #94170

    In reply to: Polylang issues

    Huca
    Participant

    Hi Pratik,

    thanks a lot for your answers.

    1) fighting with the child theme setup, will let you know
    2) I meant the image used from theme, which is then used to featured slider. I believe this is not any plugin´s issue, but template only?
    3) disabled caching plugin, but no change, this is really weird as I look at it in the same way that it should work in the same way as the text :/

    #94169
    Mahesh
    Participant

    @luismarioochoa:
    Hi Luis,
    Using Featured Image Slider, content excerpt is not possible. But as I mentioned earlier, Post/Page and Category will show excerpt. And yes using Post/Page/Category will link to the very post, you cannot modify the link to make it link to custom pages or post.
    Hope you understand.

    Regards,
    Mahesh

    #94153

    In reply to: Polylang issues

    Pratik
    Participant

    @huca:
    Thank you for using Catch Responsive Theme. Although this theme is translation-ready, the free version does not support multi-language plugins. And Pro version too officially supports WPML Plugin.

    I will try to solve the issues you have mentioned but I am not 100% sure that they will work because our theme does not support this plugin.

    1) the featured slider is not changing when switching languages
    For this, you will need to do some customizations via child theme. For creating child theme, please follow this link. Then append code given in following link in the child theme’s functions.php file: http://pastebin.com/iSfBWshR

    2) featured images remain the same for EN and CZ pages
    This should be handled by plugin as it needs to create separate images holders for separate languages. Please contact their support

    3) the logo link leads to CZ version when being on EN version of the webpage. This is really strange because the text after logo leads to correct EN version
    This is really strange as both logo and text use same link(although generated separately) via a function home_url('/'). Can you try disabling any caching plugins and see if the problem persists?

    #94107
    luismarioochoa
    Participant

    Dear Mahesh,

    Thank you for the solutions.

    I am still struggling with the Featured Image Slider. I must have done something wrong and disabled its front end visible link/button, because I cannot conceive that only the Title of the Image functions as a link/button in the front end but only if visitors figure it out by hovering over it. There have to be a way to activate the excerpt within this text box to make it visible. I tried your recommendation on using Post/Page category slider but it takes me to either pages or posts and that’s not what I want to do, I want to show the images as they show now.

    Why to offer link boxes for the image Title in the Featured Image Slider category in the back end if the links are nowhere to be found on the front end?
    Please help me. Here is the link http://destinationvows.ca/

    Thank you so much in advance
    Luis

    #94061

    In reply to: Feature Slider Images

    Mahesh
    Participant

    @chd3143: Sorry for that. I guess you mean Featured Content. Go to Dashboard=> Appearance=> Customize=> Featured Content=> Featured Content Options select Homepage/Frontpage in Enable Featured Content on option. Then select Demo Featured Content in Select Slider Type. And please make sure to check Check to Enable Slider option. Click Save & Publish, then check it on the home page if the it works.
    Let me know if any problem.

    Regards,
    Mahesh

    #94057
    smoothiechode
    Participant

    Thanks so much Mahesh. Worked.

    I like the theme a lot.

    I do however have one more issue that I was wondering if you could help me with Mahesh.

    When I go to appearance >> customize >> header image >> page/post featured header image size and select slider image it doesn’t seem to convert into a slider image and stays very large.

    Do you know what might be causing this?

    #94038

    In reply to: Feature Slider Images

    Mahesh
    Participant

    @chd3143: Go to Dashboard=> Appearance=> Customize=> Featured Slider select Homepage/Frontpage in Enable Slider on option. Then select Demo Featured Slider in Select Slider Type. Click Save & Publish, then check it on the home page if the slider works.
    Let me know if any problem.

    Regards,
    Mahesh

    #94012
    Will
    Participant

    I do not like posting my URL for security reasons! It would be such a benefit to be able to enclose an attachment in these messages. Consider adding that feature for all of us so that it’s easy communicating these issues.

    Here are the 37 errors on just one webpage:
    .catchresponsive-nav-menu .sub-menu a, .catchresponsive-nav-menu .children a Value Error : font-style 13px is not a font-style value : 13px
    1527 .no-sidebar.one-column #main Lexical error at line 1526, column 31. Encountered: “" (96), after : "" { width: 820px;
    1528 .no-sidebar.one-column #main Parse Error }
    2269 Sorry, the at-rule @-ms-viewport is not implemented.
    2273 Sorry, the at-rule @viewport is not implemented.
    3061 Feature -webkit-min-device-pixel-ratio doesn’t exist for media screen ) { select:focus, textarea:focus, input:focus, input#s, #respond form input[type=”text”], #respond form textarea, input[type=”text”], input[type=”email”], input[type=”url”], input[type=”password”], textarea { font-size: 16px; } }
    URI : http://notmywebsite.com/wp-content/themes/catch-responsive-pro-child/style.css?ver=1.0
    5 styling, colors, fonts, featured content, promotion headline, featured slider, pagination, icons, menus, breadcrumb, directly from theme customizer Parse Error [: Catch Responsive Pro Child Theme Theme URI: http://catchthemes.com/themes/catch-responsive-pro Author: Catch Themes Team Author URI: http://catchthemes.com Description: Catch Responsive Pro is an advanced version of Catch Responsive free theme. Catch Responsive Pro is an extremely flexible and customizable WordPress theme suitable for almost any kind of professional website. It is based on responsive design where each element has been carefully configured for perfect display on all devices and platforms. It comes with a wide variety of options so you can modify layout]
    5 styling, colors, fonts, featured content, promotion headline, featured slider, pagination, icons, menus, breadcrumb, directly from theme customizer Parse Error [ and much more]
    11 styling, colors, fonts, featured content, promotion headline, featured slider, pagination, icons, menus, breadcrumb, directly from theme customizer Parse Error customizer. This theme is translation ready. Check out Theme Instructions at http://catchthemes.com/theme-instructions/catch-responsive-pro/, Support at http://catchthemes.com/support/ and Demo at http://catchthemes.com/demo/catch-responsive/ Version: 1.0 License: GNU General Public License, version 3 (GPLv3) License URI: http://www.gnu.org/licenses/gpl-3.0.txt Tags: black, gray, silver, white, dark, light, one-column, two-columns, three-columns, left-sidebar, right-sidebar, fixed-layout, fluid-layout, responsive-layout, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-image-header, featured-images, flexible-header, front-page-post-form, post-formats, sticky-post, theme-options, threaded-comments, translation-ready Text Domain: catchresponsive Template: catch-responsive-pro /* =Child Theme Custom CSS ————————————————————– */
    URI : http://notmywebsite.com/wp-content/themes/catch-responsive-pro/css/genericons/genericons.css?ver=3.4.1
    34 Feature -webkit-min-device-pixel-ratio doesn’t exist for media screen ) { @font-face { font-family: “Genericons”; src: url(“./Genericons.svg#Genericons”) format(“svg”); } }
    71 .genericon-rotate-90 attempt to find a semi-colon before the property name. add it
    71 .genericon-rotate-90 Property progid doesn’t exist : DXImageTransform
    71 .genericon-rotate-90 Parse Error DXImageTransform.Microsoft.BasicImage(rotation=1);
    72 .genericon-rotate-90 Parse Error }
    80 .genericon-rotate-180 attempt to find a semi-colon before the property name. add it
    80 .genericon-rotate-180 Property progid doesn’t exist : DXImageTransform
    80 .genericon-rotate-180 Parse Error DXImageTransform.Microsoft.BasicImage(rotation=2);
    81 .genericon-rotate-180 Parse Error }
    89 .genericon-rotate-270 attempt to find a semi-colon before the property name. add it
    89 .genericon-rotate-270 Property progid doesn’t exist : DXImageTransform
    89 .genericon-rotate-270 Parse Error DXImageTransform.Microsoft.BasicImage(rotation=3);
    90 .genericon-rotate-270 Parse Error }

    #93975
    luismarioochoa
    Participant

    Dear Mahesh,

    The images have the correct dimensions: 1680×720 more even the top (part of the same blue sky and green palm tree was cropped to keep the required size.

    Here is a link to the site: http://destinationvows.ca

    I am using Featured Image Slider. I don’t know how to upload images in the Post Page Category Slider so that they show as they are showing in the Featured Image Slider

    Luis

    #93902
    Mahesh
    Participant

    @luismarioochoa: Please make sure the images used are of correct dimensions (1680×720). May be the white line is from image itself.
    It would be easier if I could test the site.
    And about the link/button, Which Featured Slider type are you using currently? Excerpt content with More button only works in Post/Page/Category slider type.
    Let me know further.

    Regards,
    Mahesh

    #93780
    luismarioochoa
    Participant

    Tank you so very much!

    I have there more questions:

    1. Featured Slider: Is there a way to keep the opacity/transparency box permanently on at and not only when hovering over it? As per in Everest Theme
    2. Is there a way to add a button or obvious link to the story linked to the feature image sliders so that people know they should click to read the story as in Everest Theme? Right now they have to assume to go to the opacity box to read what is in it, then click inside it to see the story.
    3. On the 2nd image slider, there is a white thin line on top margin showing right above above the image, I have changed the image and keep the specified dimensions 1680x720px but it keeps on showing on the second image only (I have not tried adding a third image yet. How can I get rid of this? Unfortunately I have the theme on a local host (my computer so I cannot give you a link)

    Thank you so much in advance.

    Luis

    #93593
    veerle
    Participant

    I tried, but on mobile devices, the featured slider appears right and the blog posts appear left..

    #93423
    Mahesh
    Participant

    @hmiller: Sorry for the late reply.
    1. Do you get any error message or just the featured content or slider disappears?

    2. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #featured-content .entry-title {
        text-align: center;
    }

    3. Thanks for the suggestion. Its is the base color for the theme. But you can change the colors to your desired colors through customizer, and as you said if you do need additional customization, Custom CSS area can be used.

    Regards,
    Mahesh

Viewing 20 results - 701 through 720 (of 2,398 total)