Shufflehound Support profile

Home Forums Shufflehound Support

Forum Replies Created

Viewing 20 posts - 19,461 through 19,480 (of 26,111 total)
  • Author
  • Ok

    in reply to: Image points: links?

    You are always welcome here 🙂

    Yes resolving it here https://support.shufflehound.com/forums/topic/widget-recent-posts-2/

    Then Would you mind if i log in to your site and do some troubleshooting? If this is ok then could you please share me your site log in details privately by adding them in the box having text “Click here to share private content. Only you and forum moderators will be able see it.”?

    Yes it works for Browser Tab and this is what you wanted to achieve as you have asked above.

    Right?

    in reply to: custom template file

    Hi @kykm,

     

    I hope you are well today and thank you for your question.

     

    To achieve this you can try using any of the following solutions.

     

    https://plugintut.com/create-clickable-hotspot-maps-wordpress/

    http://www.wpeagle.com/wordpress-tutorials/plugins/add-image-maps-wordpress/

    https://wordpress.org/plugins/tags/image-map/

     

    Best regards,
    Shufflehound team

    in reply to: Image points: links?

    What’s the problem?

     

    Have you used it in the widget area?

     

    If yes then please share me the screenshot of it.

    Don’t refer customizer but refer your actual site as we are hiding it using custom CSS code which doesn’t load in customizer.

    Solution for this topic

    Hi @MihaiPuscas,

     

    I hope you are well today and thank you for your questions.

     

    1-The excerpt is very useful on desktop and tablet(mobile) but not on smartphone(also mobile). I am talking about slider excerpt and individual post preview excerpt. Is there a way to keep excerpt on desktop and tablet and disable it on smartphone ? I am fine with a compromise to disable for all mobile including tablet, but first suggestion would be nicer.

    You can achieve it by adding the following CSS code in the Custom CSS code option of your theme on the below path.

     

    Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code

     

    @media only screen and (max-width: 480px) {
    .blog-list .post-content,
    .rev_slider  .sh-rev-blog > p {
        display: none;
    }
    }
    

     

    2-I set my post font to look good on desktop and tablet, but on smartphone it is too large. Is there a way to change it just for mobile ? In this case a compromise would not work, i want tablet font to remain the same as desktop.  ….. Same modification would do good on homepage.

    Try using below CSS code to achieve this.

     

    @media only screen and (max-width: 480px) {
    body #page-container * {
        font-size: 98% !important;
    }
    }

     

    3-The third issue is related to the second. When on smartphone in portrait mode, the post page (entire page, not just text) margin is to large. I am left with 5 words per line. Is there a way to modify the margin just for smartphone portrait mode ?

    …… Same modification would do good on homepage.

    Try using below CSS code to achieve this.

     

    @media only screen and (max-width : 480px) {
        #page-container .container {
          max-width: 90%!important;
        }
    }
    
    

     

    Best regards,
    Shufflehound team

    Solution for this topic

    I made the code work in your child theme file by changing it as following.

     

    add_filter('pre_get_document_title', 'archive_titles', 99);
    function archive_titles($orig_title) {
    	
    	global $post;
    	$post_type = $post->post_type;
    
    	$types = array(
    		array(
    			'post_type' => 'fahrzeuge', //Your custom post type name
    			'title' => 'Test1234' //The title tag you'd like displayed
    		),
    	);
    
    	if ( is_archive() ) { //FIRST CHECK IF IT'S AN ARCHIVE
    
    		//CHECK IF THE POST TYPE IS IN THE ARRAY
    		foreach ( $types as $k => $v) {
    			if ( in_array($post_type, $types[$k])) {
    			return $types[$k]['title'];
    			}
    		}
    		
    	} else { //NOT AN ARCHIVE, RETURN THE ORIGINAL TITLE
    
    		return $orig_title;
    	}
    }
    in reply to: custom template file

    Some Icon Box styling such as Large Iconbox 8 that you are using on your site as shown in the attached screenshot doesn’t use URL so to use URL you have to change IconBox styling.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Icon Box URL option

    Hi Max,

     

    I hope you are well today and thank you for your question.

     

    In the theme the page content is displayed by page.php theme file and post content is displayed by content.php theme file.

     

    Best regards,
    Shufflehound team

    in reply to: Custom Event Tags

    Hi Stefan,

     

    I hope you are well today and thank you for your question.

     

    You can achieve it by adding the following CSS code in the Custom CSS code option of your theme on the below path.

     

    Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code

     

    .sh-header.sh-sticky-header-active .sh-nav>li.menu-item>a {
        color: #5b5b5b;
    }
    
    

     

    Best regards,
    Shufflehound team

    in reply to: Sticky menu link color

    You are most welcome here 🙂

    in reply to: yellow pencil

    Hi Jürgen,

     

    Thank you for your question.

     

    I have tested it on my test site and it’s dispalying fine for me using latest version of Gillion theme.

     

    Please make sure you are using below latest version of theme and used shufflehound  recent posts widget in the widget area.

     


    Please login to access this file

     

    Best regards,
    Shufflehound team

    Hi Jürgen,

     

    I hope you are well today and thank you for your question.

     

    Because it seems you are using mega menu on desktop on your site shared in your another topic.

     

    Could you please share the screenshot of the drop down menu displaying how you want it to display on desktop?

     

    Best regards,
    Shufflehound team

    I visited your shared site and the category & titlebar don’t display for me on mobile as shown in the attached screenshot.

     

    Please test it clearing autoptimize and browser cache.

    Attachments:
    You must be logged in to view attached files.

    I don’t see the Recent posts widget used on your shared site.

     

    Please advise.

    Then please make sure you have changed the old subdomain URL to new URL in your site database using following solution.

     

    https://wordpress.org/plugins/search-and-replace/

    https://blog.templatetoaster.com/update-old-urls-in-database/

    You are most welcome here 🙂

Viewing 20 posts - 19,461 through 19,480 (of 26,111 total)