Zed

Forum Replies Created

Viewing 30 posts - 3,901 through 3,930 (of 6,635 total)
  • Author
    Posts
  • in reply to: Mobile scrolling blocked on certain smartphones #40967
    Zed
    Cryout Creations mastermind

    Temporarily disable all your plugins and recheck if this issue still exists.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    Zed
    Cryout Creations mastermind

    It makes sure embedded videos fit on the screen on mobile devices.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: Localization Bug #40965
    Zed
    Cryout Creations mastermind

    Polylang doesn’t always show all translateable strings. Edit the link fields from the default # to something else and the fields will appear under Strings.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: HR tag not showing in posts #40931
    Zed
    Cryout Creations mastermind

    This will be fixed in the next update.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    Zed
    Cryout Creations mastermind

    Pages could always have different layouts than the main site one. However, we’ve migrated layout options controls from page templates to page metas in the recent updates, but the demo wasn’t yet updated to use the new meta options.

    According to custom WordPress.org rules, repository themes cannot include widgets for custom content, so we could not provide something like a picture widget in the theme; but we’re thinking about collecting all ideas into a separate plugin.

    Featured blocks are designed to display custom content (definable via pages). These areas have excerpt functionality (which is also default) to support auto-displayed content, but they are intended for the content to be manually set up.

    We’ll fix the missing horizontal ruler in the next update.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: logo doesn't appears on smartphone #40929
    Zed
    Cryout Creations mastermind

    Also, try to not use accented letters in filenames. Older Safari appears to have issues with this.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: Pagination-Display-Error with Plugin #40928
    Zed
    Cryout Creations mastermind

    Could you mention the error or post a screenshot with it?


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: Verbosa compatibility Woocommerce #40925
    Zed
    Cryout Creations mastermind

    We will be including WooCommerce compatibility in Verbosa in a future update.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: Integrating Co-Authors Plus Plugin with Verbosa #40924
    Zed
    Cryout Creations mastermind

    You’ll need to customize the theme function that displays the author(s):

    if (function_exists('get_coauthors')):
    function verbosa_posted_author() {
        $verbosa_meta_author = cryout_get_option( 'verbosa_meta_author' );
    
        if ($verbosa_meta_author) {
    		
            $first = true;
            $output = '';
            foreach(get_coauthors() as $coauthor){
                if(!$first){
                    $output .= ', ';
                } else {
                    $first = false;				
                }
                $output .= sprintf( '<a class="url fn n" href="%1$s" title="%2$s"' . cryout_schema_microdata('author-url', 0) . '>
                            <em' .  cryout_schema_microdata('author-name', 0) . '>%3$s</em>	</a>',
                        get_author_posts_url( $coauthor->ID ),
                        sprintf( esc_attr( __( 'View all posts by %s', 'verbosa' ) ), $coauthor->display_name ),
                        $coauthor->display_name );
            };		
    		
            echo sprintf(
                '<span class="author vcard"' . cryout_schema_microdata('author', 0) . '>
                    <i class="icon-pen icon-metas" title="'.__("Author", "verbosa").'"></i> %1$s </span>',
                $output );
        }
    } // verbosa_posted_author
    endif;

    Note that I did not test this code so it may be safer to include it and test it on a dev site.

    • This reply was modified 8 years ago by Zed. Reason: corrected a text-domain in the code

    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: Verbosa German translation #40923
    Zed
    Cryout Creations mastermind

    Thank you. We’ll include it with the next update.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: Images #40922
    Zed
    Cryout Creations mastermind

    Did you try regenerating the thumbnails?


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: Header opacity? #40921
    Zed
    Cryout Creations mastermind

    That can be done with custom styling.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    Zed
    Cryout Creations mastermind

    @AnnaC: switch the blocks from excerpts to full posts (in the theme’s block options) for mark-up (such as links) to be displayed.


    @gabby_yanez
    , the blocks feature is designed to display small bits of texts (with an icon). As such, they aren’t even meant to link to anything (this functionality was added only due to requests).


    @gabby_yanez
    : did you set your homepage to display a static page from WordPress’ reading settings? Set that back to latest posts and then you can hide the posts from the theme’s landing page options.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: How can I get an image in a box #40919
    Zed
    Cryout Creations mastermind

    The theme will use the posts’ featured image as the box image, so assign a featured image to the posts that are used in the boxes.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: Landing Page Slider – Hide caption line #40917
    Zed
    Cryout Creations mastermind

    This is corrected in the 1.2.1 update.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: Great theme! Reporting a few bugs. #40916
    Zed
    Cryout Creations mastermind

    The 1.2.1 update ads WooCommerce compatibility.

    The third issue has to do with the length of the menu and and the only workaround for now is to limit the menu’s content as to not expand more than one line.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: What's new in 1.2.0 #40915
    Zed
    Cryout Creations mastermind

    We don’t always publish the update announcements on time, but the changelog is always included in the theme’s readme.txt file.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: Menu Dropdow #40914
    Zed
    Cryout Creations mastermind

    For now the only way to avoid this is to limit menu content as to not jump on two lines.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: How do I change menu in the header? #40913
    Zed
    Cryout Creations mastermind

    Create and use a custom menu (1), (2).


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: woocommerce + fluida #40912
    Zed
    Cryout Creations mastermind

    We’ve added WooCommerce supported in the latest 1.2.1 update.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: WPML Support? #40911
    Zed
    Cryout Creations mastermind

    WPML and Polylang should be fully supported with the latest 1.2.1 update using their Strings features. Note that due to how the customizer works, you will need to edit theme texts from their default values before they become visible for translation in the plugins.

    qTranslate X should have always worked since it uses a different way of defining translations.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: update trouble #40910
    Zed
    Cryout Creations mastermind

    😯


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: Problem with Media Library Images #40909
    Zed
    Cryout Creations mastermind

    The theme does not manipulate the image gallery in any way. Test the gallery functionality with one of the default Twenty themes and also investigate if disabling plugins solves anything.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: adaptive visualization don't work properly #40908
    Zed
    Cryout Creations mastermind

    It’s simpler to use an adsense plugin to add your code, instead of modifying files.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: Menu not working #40906
    Zed
    Cryout Creations mastermind

    I don’t notice anything wrong with the menu (but I also use ad and script blockers which appear to block a lot of extra content from your site).


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: Layout broken in Safari Mac OS 10.6 #40904
    Zed
    Cryout Creations mastermind

    If you’re actually using Safari version 5.1 that release is outdated (as far as feature support is concerned) and we don’t support it.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: How to show ONLY the featured image in excerpts, not more #40902
    Zed
    Cryout Creations mastermind

    I don’t see this currently happening on your site. Did you solve it?


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: transparency #40900
    Zed
    Cryout Creations mastermind

    The theme has extensive colour options – including backgrounds.

    Transparency, however, is not supported by WordPress’ built-in color selector, but is possible with custom styling.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: Link to header logo #40898
    Zed
    Cryout Creations mastermind

    If you’re using the theme’s logo functionality, then that already links to the homepage.

    If you’re using a header background image, you can make it link to the homepage by setting the theme’s “site header” option to “clickable image”


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
    in reply to: Presentation Page: swap position slides and text area 1 #40896
    Zed
    Cryout Creations mastermind

    It is possible by customizing the code responsible for the presentation page (located in frontpage.php) using a child theme.


    If you like our creations, help us share by rating them on WordPress.org.
    Please check the available documentation and search the forums before starting a topic.
Viewing 30 posts - 3,901 through 3,930 (of 6,635 total)