Forum Replies Created

Viewing 20 posts - 4,421 through 4,440 (of 4,916 total)
  • Author
    Posts
  • in reply to: Site giving 500 error after update #85443
    Mahesh
    Participant

    Hi @elvis,

    Seems your site is working fine now.
    Have a nice day!

    Regards,
    Mahesh

    in reply to: Logo and header text alignment #85442
    Mahesh
    Participant

    Hi @giuliog,

    Thank you for your appreciation.
    Have a nice day!

    Regards,
    Mahesh

    in reply to: vCard #85393
    Mahesh
    Participant

    Hi @Edward,

    WordPress doesn’t allow to upload .vcf files due to security issues. You can upload the file somewhere else eg. dropbox and then put the link to the file in your site.

    Regards,
    Mahesh

    in reply to: Search Box Presentation Error #85390
    Mahesh
    Participant

    Hi @alhaarth,

    It is working fine in our server. It seems you are using some tools to minify style.css may be that is creating the issue. Please disable the tool and check it again.
    Let me know if the problem persist.

    Regards,
    Mahesh

    in reply to: Site giving 500 error after update #85389
    Mahesh
    Participant

    Hi @davidbarker223,

    Seems there was some breakage while updating theme, please reinstall the theme. Let me know if any problem arises.

    Regards,
    Mahesh

    in reply to: Catch Box doesn't look the same on Firefox and Chrome #85388
    Mahesh
    Participant

    Hi @spespam,

    I tested the demo site on both the browsers (firefox and chrome both latest) and both are working fine, no bold text issue. Is this the only site is displaying bold text or other sites too? Please let me know. May be the problem with your browser.

    Regards,
    Mahesh

    in reply to: Featured content, Text widget, Promoheadline, Languages #85387
    Mahesh
    Participant

    Hi @scubafreak,

    For that, you have to create a child theme, you can find more details on creating child theme HERE. Then in functions.php add the following code and override it.

    function adventurous_homepage_headline() { 
    	//delete_transient( 'adventurous_homepage_headline' );
    	
    	global $post, $wp_query, $adventurous_options_settings;
       	$options = $adventurous_options_settings;
    	
    	// Getting data from Theme Options
    	$disable_headline = $options[ 'disable_homepage_headline' ];
    	$disable_subheadline = $options[ 'disable_homepage_subheadline' ];
    	$disable_button = $options[ 'disable_homepage_button' ];
    	$homepage_headline = $options[ 'homepage_headline' ];
    	$homepage_subheadline = $options[ 'homepage_subheadline' ];
    	$homepage_headline_button = $options[ 'homepage_headline_button' ];
    	$homepage_headline_target = $options[ 'homepage_headline_target' ];
    	
    	//support qTranslate plugin
    	if ( function_exists( 'qtrans_convertURL' ) ) {
    		$homepage_headline_url = qtrans_convertURL($options[ 'homepage_headline_url' ]);
    	}
    	else {
    		$homepage_headline_url = $options[ 'homepage_headline_url' ];
    	}
    	
    	// Front page displays in Reading Settings
    	$page_on_front = get_option('page_on_front') ;
    	$page_for_posts = get_option('page_for_posts'); 
    
    	// Get Page ID outside Loop
    	$page_id = $wp_query->get_queried_object_id();
    
    	 if ( empty( $disable_headline ) || empty( $disable_subheadline ) || empty( $disable_button ) ) { 
    		
    		if ( !$adventurous_homepage_headline = get_transient( 'adventurous_homepage_headline' ) ) {
    			
    			echo '<!-- refreshing cache -->';	
    			
    			$adventurous_homepage_headline = '<div id="homepage-message"><div class="container"><div class="left-section">';
    			
    			if ( $disable_headline == "0" ) {
    				$adventurous_homepage_headline .= '<h2>' . $homepage_headline . '</h2>';
    			}
    			if ( $disable_subheadline == "0" ) {
    				$adventurous_homepage_headline .= '<p>' . $homepage_subheadline . '</p>';
    			}			
    			
    			$adventurous_homepage_headline .= '</div><!-- .left-section -->';  
    			
    			if ( !empty ( $homepage_headline_url ) && $disable_button == "0" ) {
    				if ( !empty ( $homepage_headline_target ) ) {
    					$headlinetarget = '_blank';
    				}
    				else {
    					$headlinetarget = '_self';
    				}
    				
    				$adventurous_homepage_headline .= '<div class="right-section"><a href="' . $homepage_headline_url . '" target="' . $headlinetarget . '">' . $homepage_headline_button . '</a></div><!-- .right-section -->';
    			}
    			
    			$adventurous_homepage_headline .= '</div><!-- .container --></div><!-- #homepage-message -->';
    			
    			set_transient( 'adventurous_homepage_headline', $adventurous_homepage_headline, 86940 );
    		}
    		echo $adventurous_homepage_headline;	
    	 }
    }

    Note: You have to replace the below section(Promotion headline button) with contact form.

    if ( !empty ( $homepage_headline_url ) && $disable_button == "0" ) {
    				if ( !empty ( $homepage_headline_target ) ) {
    					$headlinetarget = '_blank';
    				}
    				else {
    					$headlinetarget = '_self';
    				}
    				
    				$adventurous_homepage_headline .= '<div class="right-section"><a href="' . $homepage_headline_url . '" target="' . $headlinetarget . '">' . $homepage_headline_button . '</a></div><!-- .right-section -->';
    			}

    Regards,
    Mahesh

    in reply to: Logo and header text alignment #85386
    Mahesh
    Participant

    Hi giuliog,

    Seems you are using Catch Everest and you’ve posted the issue for support in Clean Journal. The support thread is categorized by theme to make it simple and easy for both developers and the users. Please post the support issue under related theme.
    Go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the following CSS.

    @media screen and (min-width: 768px) { 
        #hgroup.with-logo{
           margin-top: 15px;
        }
    }
    
    @media screen and (max-width: 767px) { 
        #site-logo {
            display: inline-block;
            float: none;
            text-align: center;
        }
        #hgroup.with-logo {
            float: none;
            margin-top: 0;
            padding-top: 5px;
        }
    }
    in reply to: Featured Content also Showing up on main page #85385
    Mahesh
    Participant

    Hi @connectionspgh,

    For this, create a new category Featured(example) and then assign the category to the posts in the Featured Content. Then go to “Dashboard=> Appearance=> Customize=> Theme Options=> Frontpage/Homepage Settings” and select categories except “Featured” in Homepage posts categories

    Regards,
    Mahesh

    in reply to: Featured content, Text widget, Promoheadline, Languages #85274
    Mahesh
    Participant

    Hi @scubafreak,

    Thank you for your appreciation.
    I’ll try to make the steps simpler.

    1. Link to category in featured content image.
    I assume you’ve managed to put the images in featured content. For make the image link to selected category, go to “Dashboard=> Appearance=> Customize=> Featured Content=> Featured Content Settings” then scroll to “Link URL” and put the link of your desired category in the input box (example: http://yoursite/category/some-category). Repeat this as per the items in the featured content and the click save.

    2. I guess you’ve put an img tag in text widget to display image in the sidebar.
    <img src="link of some image" alt="your-image" />
    Change it to look as follows:

    <a href="your-desired-url" title="title-for-link">
    <img src="link of some image" alt="your-image" />
    </a>

    3. This is not possible through options. You’ll need to hire a customizer.

    4. We cannot say one particular plugin is best. Please visit this LINK and search for the appropriate plugin to handle email automation.

    5. The theme is translation ready and support translations plugin such as WPML, Qtranslate. You can use those from WordPress.org repository.

    6. You can use Qtranslate for this.

    Regards,
    Mahesh

    in reply to: Pro Upgrade #85269
    Mahesh
    Participant

    Hi @husker,

    Generally, the future year cost stays the same.
    But, as per my knowledge, on the basis of loyal customer, you may contact us HERE for the coupon with which you can get certain percentage discounts(30%, 40% may not be accurate).

    Regards,
    Mahesh

    in reply to: Pro Upgrade #85267
    Mahesh
    Participant

    Hi @husker,

    No, it won’t effect the changes. And the setting in free version will be retained in Pro version as well.

    Regards,
    Mahesh

    in reply to: Add additional field to header #85266
    Mahesh
    Participant

    Hi @ogremhdw,

    Please post in your site url.

    Regards,
    Mahesh

    in reply to: Featured Content also Showing up on main page #85265
    Mahesh
    Participant

    Hi @connectionspgh,

    Please post in your site url and show what you want to change as for an example.

    Regards,
    Mahesh

    in reply to: Is Full-Width possible? #85264
    Mahesh
    Participant

    Hi connectionspgh,

    No, Adventurous Pro doesn’t have such feature. For this feature you’ll need to do it with Custom CSS. Please follow the link.
    https://gist.github.com/mahesh247/727b652086537eed87bb
    Then go to “Dashboard=> Appearance=> Theme Options=> Custom CSS” box and add the CSS from the above link.
    Hope it works as you desired, if not, you’ll need to do hire a customizer.

    Regards,
    Mahesh

    in reply to: Featured Image Resizing #85259
    Mahesh
    Participant

    Hi @connectionspgh,

    The featured image is resized into three sizes, featured post slider(1600×600), featured image(800×324) and small image(400×267). Which image is one causing the issue. And what size do you want to change the image to?
    You can use the large image or the size mentioned above.
    Let me know further.

    Regards,
    Mahesh

    in reply to: Breadcrumbs color #85204
    Mahesh
    Participant

    Hi @nancyjas,

    Please add the following CSS for the change.
    1. arrange that it has the same color #f2f2f2

    #breadcrumb-list {
        background-color: #f2f2f2;
    }

    2. same color as the normal tekst #5a5a5a

    #breadcrumb-list a, #breadcrumb-list a span {
        color: #5a5a5a;
    }

    3. footer widget straight in the middle

    #supplementary .wrapper {
        text-align: center;
    }

    4. make footer a little bit less high

    #supplementary{
        padding-top: 0;
    }
    #supplementary .widget {
        margin-bottom: 0;
    }

    5. I guess you need to hire a customizer for this.

    Hope this helps.

    Regards,
    Mahesh

    in reply to: Home Page Image Slider #85190
    Mahesh
    Participant

    Hi pizzadude007,

    The one you’ve mentioned above is the demo slider. I recommend you to upgrade to Adventurous Pro as the feature you are seeking is available in it. You can use post, page, category or image slider in Pro version while free version is limited demo slider(content cannot be changed), post and category slider.

    Regards,
    Mahesh

    in reply to: How to change spacing between primary menu items #85189
    Mahesh
    Participant

    Hi @pete-guttenberggmail-com,

    Thank you for using Catch Responsive Pro.
    Go to “Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS” box and add the following CSS.

    .menu.catchresponsive-nav-menu {
        width: 95%;
    }
    .menu-item {
        width: 20%;
    }
    .menu-item a {
        text-align: center;
    }

    Hope this helps you to solve the issue.

    Regards,
    Mahesh

    in reply to: to change an area above footer #85185
    Mahesh
    Participant

    Hi @katonov,

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

    #content .wrapper {
        padding-bottom: 0;
    }
    .page.hentry {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    This will reduce the space you’ve mentioned to some extent, however, still some space left is because of the visual-composer plugin you are using, which if decreased will create issues in other sections.

    Regards,
    Mahesh

Viewing 20 posts - 4,421 through 4,440 (of 4,916 total)