Search Results for 'ie'

  • Author
    Search Results
  • #106542

    Just thought I would share — I have modified the mantra/includes/theme-comments.php file, but I did it slightly differently than @Rufus suggested. I used the equivalent template of the Kahuna theme as a model — this can be found here –
    https://themes.svn.wordpress.org/kahuna/1.6.1.1/includes/comments.php – I just chose that one because it is the most recently updated free Cryout theme.

    So now my Mantra template contains this switch statement:

    function mantra_comment( $comment, $args, $depth ) {
    	$GLOBALS['comment'] = $comment;
    	switch ( $comment->comment_type ) :
    		case 'pingback'  :
    		case 'trackback' :
    		?>
    			<li class="post pingback">
    			<p><?php _e( 'Pingback: ', 'mantra' ); ?><?php comment_author_link(); ?><?php edit_comment_link( __('(Edit)', 'mantra'), ' ' ); ?></p>
    		<?php
    		break;
    		case '' :
    		default :
    	?>

    The pingback/trackback switch statements were at lines 55-60 of the original Mantra template. I moved them to the beginning of the switch statement following the Kahuna example, and also because I just thought it would be cleaner to have the default spec at the end.

    The main difference with my solution is that I am using “default” rather than “case ‘comment'”. Probably doesn’t matter … just a matter of coding preference.

    #106485

    I broke 50 pieces. Disabled splitting – didn’t help. Temporarily switched to another topic.

    #106469

    I’m also having the same. Thanks for sharing your experience, Rufus. Saves me the testing.

    Note that Mantra still has the bug of displaying categories (poorly formatted) when set not to.

    Website: davidya.ca

    • This reply was modified 4 years ago by davidfb. Reason: update
    #106423
    Zed
    Cryout Creations mastermind

    From what I see in the plugin’s documentation, the image file needs to be a SVG for the plugin to do its job (it doesn’t replace regular jpg/png images with SVGs dynamically).
    Did you assign a SVG image file as the header image of the site? The theme does not care about the file format that’s being used, it just retrieves and outputs the correct image URL as returned by WordPress.


    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.
    #106361

    Tried, but not working.

    Website: thedenxpert.com

    #106337

    Dear Zed,
    Thank you for your reply. I did ty to add that to read:

    if (isset($himgsrc) && ($himgsrc != ”)) : echo ‘' . get_bloginfo( 'name' ) . '‘; endif;

    But as you predicted it didn’t work. It’s a pity as the SVG functionality works with all other images including the sliderimages on the presentation page – but that’s not where the priest wants it, lol!

    Thought it might work if i placed the interactive part as an image within the header widegt, but no joy.

    The plugin automatically adds class=”style-svg” to the tag. Hmmmm.

    I suspect i may be near the limit of my understanding/competence. I don’t want to impose, but if there is an easy fix please let me know.

    Thank you for your patience and assistance.
    John

    #106334
    Zed
    Cryout Creations mastermind

    The line responsible with the output of the markup is the last one in that function
    if (isset($himgsrc) && ($himgsrc != '')) : echo '<img id="bg_image" alt="' . get_bloginfo( 'name' ) . '" title="" src="' . esc_url( $himgsrc ) . '" />'; endif;
    This is where you’d need to add the class attribute. But is this sufficient to make your SVG plugin work? Adding the classname there will not replace the source image used by the theme for the header.


    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.
    #106333
    Zed
    Cryout Creations mastermind

    The height of the main navigation (located between the header image and the content) is not configurable through the options. If desired, it can be forced customized with CSS:

    body #access ul {
        line-height: 1.6; /* default value */
    }

    This applies to submenu items as well.


    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

    Adjust the CSS to body.woocommerce div.product div.images img { width: auto; } (no space between the first two identifiers).

    Concerning the thumbnails regeneration, apparently it’s a built-in WooCommerce feature since version 3.3 that triggers automatically on certain events (includes changing themes, probably others too).
    Did you change themes and/or adjust any image sizes 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.

    I tried this in the additional css part of the theme, but it doesn’t seem to make any difference.

    #106299
    Zed
    Cryout Creations mastermind

    You probably had CSS minifying enabled in the caching plugin. Tempera needs its styling to be applied in a particular order for it to work correctly and minifying usually breaks this order.
    You should be able to reactivate caching if you exclude the theme’s styles from minification or do not use this functionality.


    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.
    #106294
    Zed
    Cryout Creations mastermind

    The line-height and height are applied to both the list element (menu item) and the inner anchor and span.
    However, I’d advise against changing the (line-)height of the list element – try applying your styling on the inner span only: #access li.menu-item-XYZ > a > span { }


    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.
    #106288
    Zed
    Cryout Creations mastermind

    Your content is created and saved within WordPress, and you can change themes at any time.
    Some particular elements are associated with the theme and may no longer be available with a different theme. Also, you’d need to re-configure the theme (if configuration abilities are available in the new theme) to the desired visual particularities.


    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.
    #106286
    Zed
    Cryout Creations mastermind

    The theme relies on WordPress’ get_header_image() to retrieve the header image URL used in the generated markup.
    I doubt the plugin can filter this URL, especially since that function does not include any filterable calls.

    To add extra attributes to the header image markup you’ll need to customize the theme code generating it. Look for nirvana_header_image() in includes/theme-functions.php. This function can be unhooked and a replacement hooked in its place.


    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

    The ability to do this is limited to the markup WordPress itself allows in the site title field (in the general 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.
    Zed
    Cryout Creations mastermind

    The ability to do this is limited to the markup WordPress itself allows in the site title field (in the general 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.
    #106279
    Zed
    Cryout Creations mastermind

    You can adjust the cropping position while assigning the header image, however that only applies on the cropped mode of the header image behaviour option. In contained mode the whole non-cropped image is used.


    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.
    #106278
    Zed
    Cryout Creations mastermind

    The ‘hide post and page’ titles only refers to single post and single page sections. It has no effect anywhere else on the site. To hide titles for sections in the landing page custom CSS can be used:

    #lp-text-two h2.lp-text-title {
        display: none;
    }

    The number of posts displayed in posts lists (on the homepage, in search results, in categories, so on) is controlled by WordPress’ general reading options: https://wordpress.com/support/settings/reading-settings/


    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.
    #106226

    After posting my question I continued searching for an answer and I read somewhere that this might be caused by a plugin. I de-activated W3-Total Cache and now it’s working perfectly!

    I hope this may help someone else who might be experiencing the same issue 🙂

    #106169

    On my website the page excerpts from my other pages are not displaying on the landing page(below the slider where the three pages are displayed side by side), despite having trying all possible options. 
    To which Zed, from Cryout Creations Team replied:
    Do you use any multilingual or localization plugin on the site?
    Could you try temporarily disabling all other landing page sections except the icon blocks to test if that makes any difference in the excerpts displayed?
    and I replied
    I don’t have any localization plugins active on the site. I also tried disabling all other sections and checking but that doesn’t help too. Do you think another plugin might be causing the issue? The plugins I’ve installed are as given below:
    
1)Accelerated Mobile Pages
    
2)ACF Content Analysis for Yoast
    
3)Akismet ANTI-SPAM
    
4)AMP

    5)Classic Editor

    6)CoBlocks
    
7)Contact Form 7

    8) Cryout Serious Slider
    
9)Drag and Drop Multiple File Upload

    10) Elementor

    11) Elements Kit Lite
    
12) Essential add-ons for elementor

    13)Force Regenerate Thumbnails
    
14) Full background Image Manager WordPress Plugin
    
15)Full Site Editing
    
16) Google Analytics for WordPress by mosntersights
    
17) Gutenberg

    18) Ivory Search

    19)JetPack by WordPress.com
    
20) Layout Grid

    21) Listo
    22) LiteSpeed Cache
    
23) OneElements – Ultimate Addons for Elementor
    
24) SiteKit by Google
    
25) What the File

    26) WordPress Importer

    27) WP Bodymovin
    
28) WPForms Lite
    
29) WPForms Widget for Elementor Page Builder
    30) Yoast SEO

    Its been 2 weeks since I have received a response. Kindly help.

    #105628

    In reply to: Header images missing

    Hi again,
    I have found the problem, so i will post the solution.
    In the Customising, Post information, Featured image, the button at the bottom of the section Use Featured image in Header, was switched to off, once switched to on, all ok.
    I can’t tell how it came to be switched off.
    I hope this can be of some use to someone.
    Thanks,
    Debbie

    Website: www.trueharvestseeds.org

    #105418
    This reply is private.
    #105402
    John Hoke
    Power User

    @Zed

    I just went back through and it appears to be working on my iPhone … my iPad had an issue validating that gravity works from a height and is smashed at the moment (gravity still works)

    I am going to ask a friend to validate for me … with quarantining its probably going to take a couple days for me to do it directly…

    #105391
    Zed
    Cryout Creations mastermind

    If you’re referring to the star fields (or any other additional fields) missing from the product comment form, I suggest switching the Comments Field Label option to Labels for increased compatibility with form customization plugins.


    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.
    #105389

    In reply to: Font Spacing

    Zed
    Cryout Creations mastermind

    I think we’ve also discussed this via the support system and disabling the justified alignment was a solution to alleviate the less-than-desired words spacing.


    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.
    #104725
    moriharu nakae
    Power User

    When I try to add a new review, the rating system with the required number of stars does not work

    Zed
    Cryout Creations mastermind

    The link fields support any kind of links acceptable to the browsers:
    https://html.com/anchors-links/#Internal_and_External_Links


    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.
    #104609
    Zed
    Cryout Creations mastermind

    @juniper, you have changed themes in the meantime.


    @John
    , are you by chance experiencing those issues on an iPad?


    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.
    #104606
    Zed
    Cryout Creations mastermind

    Your CSS was close, but not specific enough. The theme applies capitalization on the inner span.
    Use the following CSS:

    body #access a > span {
        text-transform: none;
    }

    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.
    #104597
    Zed
    Cryout Creations mastermind

    Your main navigation is long enough that it doesn’t fit in the available space and overflows onto the header image.
    To avoid this you can either rearrange your menu items so they take up less horizontal space or force-activate the mobile menu earlier:

    @media (max-width: 123px) {
       .cryout #nav-toggle {
    	display: block;
       }
       .cryout #branding {
    	margin-right: 3em;
       }
       #masthead.cryout #access {
    	display: none;
       }
    }

    Replace 123px with the screen width value when the menu starts overflowing (or a few pixels before).


    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 results - 481 through 510 (of 3,208 total)