-
AuthorSearch Results
-
August 29th, 2020 at 19:34 #106926
In reply to: Post Page Opacity
Perfect, Zed – Thanks. For my site, I found a .25 opacity was what I liked. A distinct roll-over effect that brightened the image but didn’t overshadow the feature image itself. It still unifies.
August 29th, 2020 at 14:17 #106921In reply to: Hamburger Menu not working on mobile
Zed
Cryout Creations mastermind@StudioDangerboy: how are the videos embedded (which shortcode/widget/block)?
@tomppa28: JS optimization shouldn’t cause issues, it’s only the CSS that needs to be applied in the correct order (and optimizations sometimes mess with the order). But that really depends on what the plugin is actually doing under the hood.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.August 29th, 2020 at 14:12 #106920In reply to: Telegram icon
Zed
Cryout Creations mastermindThe theme uses an icon font for its social icons. Did you modify this icon font or loaded your own icon font to add the extra icon for Telegram?
Without it, CSS is insufficient to perform such a change.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.August 29th, 2020 at 14:10 #106919In reply to: Kahuna Plus navigation doesn’t work properly anymore
Zed
Cryout Creations mastermindIf I remember correctly, we identified the issue via the support service as being caused by a JavaScript error on the frontend.
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.August 29th, 2020 at 14:08 #106917In reply to: Display sidebar on certain POSTS only? (not pages)
Zed
Cryout Creations mastermindThe theme does not implement custom layout functionality for posts – it only has this feature for pages (via page templates).
To achieve the same result for posts you’d need to create a custom handling template (starting from the default single.php file) based on the template hierarchy and customize it to use the desired layout class and force display the desired sidebars.
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.August 29th, 2020 at 14:00 #106916In reply to: Blog Style Pages – No Header Image?
Zed
Cryout Creations mastermindDoes the site have a general header image set? The search page appears to indicate that it doesn’t.
When a general header image is set, that image will be used on the blog section (this is a special section for which WordPress ignores any page attributes set on the placeholder page) and on the ‘portfolio’ section (which appears to be a standard posts archive, not a static page using Jetpack’s portfolio shortcodes).
The featured image in the header functionality is only available for individual posts and individual static pages that display their actual content (and are not placeholders).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.August 29th, 2020 at 13:53 #106914In reply to: “Static” slider image on Presentation page
Zed
Cryout Creations mastermindThe slider transitions cannot be entirely disabled, but you can set the animation type to fade, animation time to zero to make transitions instantaneous and also set the pause time to a large number of seconds (multiplied by 1000 as the value is entered in milliseconds).
Setting the pause time to zero makes the slider cycle continuously, which uses up CPU time.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.August 29th, 2020 at 13:45 #106913In reply to: Request : Options to Featured boxes
Zed
Cryout Creations mastermindWe did consider such an option when we created the landing page’s functionality, but decided not to include it because we didn’t have many possible configuration values for it.
WordPress doesn’t have a popularity attribute – what criteria would be this based on? most views? (WordPress itself doesn’t log views), most comments? (comments are a separate post type).
We did, however, include aanima_boxes_query_argsfilter that can be used to directly customize the WP Query as needed. Below are the existing parameters that are passed along to the query:$args = apply_filters( 'anima_boxes_query_args', array( 'showposts' => $options['anima_lpboxcount' . $sid], 'cat' => cryout_localize_cat( $cat ), 'ignore_sticky_posts' => 1, 'lang' => cryout_localize_code() ), $options['anima_lpboxcat' . $sid], $sid ); $custom_query->query( $args );$sid is the section’s number (1, 2 or 3 for 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.August 29th, 2020 at 13:35 #106912In reply to: How do i add layout options to custom post type
Zed
Cryout Creations mastermindThe theme’s meta layout options are only applied to the standard pages (in the free edition) and extended to posts and jetpack portfolio posts in the Plus edition.
To activate the dashboard controls further, you’ll need to duplicate the respective meta functionality defined in includes/meta.php to apply to your custom post type slug. The frontend should get handled automatically as the existing code doesn’t check for post type.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.August 29th, 2020 at 12:57 #106902In reply to: Post Page Opacity
Zed
Cryout Creations mastermindThe opacity of the featured images gradient overlay is not directly configurable. To customize it you can use the following custom CSS:
body .post-thumbnail-container:hover .featured-image-overlay::after { opacity: 0.5; }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.August 23rd, 2020 at 23:39 #106773August 23rd, 2020 at 22:15 #106772Zed
Cryout Creations mastermindI am sorry for the slow reply, but we’ve been kept somewhat occupied for the past week with some personal matters.
We are aware of the issue since @abigal2 pointed it out and have already implemented the necessary correction in our development code to support WordPress’ 5.5 change making comments to always have a type.
Unfortunately, due to guideline changes and requirements imposed on repository themes since the last Mantra release, submitting the next update requires from us to perform extra changes in the theme and these will need some additional time to implement.
Until then, if you’re not comfortable with the manual edits described above I’ve added a theme zip that includes the necessary correction to our own archive.
You can use this plugin to update an already installed theme via manual zip uploads.
Alternatively WordPress 5.5 theoretically implements this feature as well, however it hasn’t worked in my tests (if it does work for you, then that’s great). Later edit: apparently this was an issue for sites hosted on Windows only and is fixed in 5.5.1.-
This reply was modified 5 years ago by
Zed.
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.August 19th, 2020 at 00:02 #106628Do you have FTP access? You can edit directly through the theme editor in WordPress– I prefer using SFTP for edits simply because it makes it easier for me to make a backup copy of the original file.
I think that a functions.php modification would be preferable, but I personally wasn’t sure how to write one. Given that the Mantra theme hasn’t been updated since May 2019, there’s probably no downside to editing the theme file itself. (I’m sure that if and when a theme update is pushed out, it will address this issue).
August 15th, 2020 at 12:41 #106542Just 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.
August 13th, 2020 at 05:37 #106485I broke 50 pieces. Disabled splitting – didn’t help. Temporarily switched to another topic.
August 12th, 2020 at 19:04 #106469I’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 5 years ago by
davidfb. Reason: update
August 10th, 2020 at 13:28 #106423In reply to: SVG in Nirvana site header image
Zed
Cryout Creations mastermindFrom 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.August 6th, 2020 at 23:09 #106361In reply to: Page excerpts not displaying in front page
Tried, but not working.
Website: thedenxpert.com
August 5th, 2020 at 23:03 #106337In reply to: SVG in Nirvana site header image
Dear Zed,
Thank you for your reply. I did ty to add that to read:if (isset($himgsrc) && ($himgsrc != ”)) : echo ‘
‘; 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.
JohnAugust 5th, 2020 at 20:16 #106334In reply to: SVG in Nirvana site header image
Zed
Cryout Creations mastermindThe 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.August 5th, 2020 at 20:12 #106333In reply to: Change height of menu bar
Zed
Cryout Creations mastermindThe 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.August 5th, 2020 at 20:10 #106332Zed
Cryout Creations mastermindAdjust 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.August 5th, 2020 at 18:32 #106329I tried this in the additional css part of the theme, but it doesn’t seem to make any difference.
August 4th, 2020 at 21:08 #106299In reply to: Hamburger Menu not working on mobile
Zed
Cryout Creations mastermindYou 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.August 4th, 2020 at 21:05 #106294In reply to: Create a button in the main nav
Zed
Cryout Creations mastermindThe 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.August 4th, 2020 at 20:43 #106288In reply to: If I change theme, will I lose the content?
Zed
Cryout Creations mastermindYour 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.August 4th, 2020 at 20:30 #106286In reply to: SVG in Nirvana site header image
Zed
Cryout Creations mastermindThe 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.August 4th, 2020 at 20:24 #106285Zed
Cryout Creations mastermindThe 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.August 4th, 2020 at 20:24 #106284Zed
Cryout Creations mastermindThe 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.August 4th, 2020 at 20:10 #106279In reply to: how to adjust crop option for header image
Zed
Cryout Creations mastermindYou 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. -
This reply was modified 5 years ago by
-
AuthorSearch Results