Forum Replies Created
-
AuthorPosts
-
Zed
Cryout Creations mastermindThe number of posts displayed by any category page (including when using magazine layout) is the number configured in Settings > Reading under “Blog pages show at most _ posts”
If these articles occupy less space than your sidebar(s) content, you’ll get empty space underneath.
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 mastermindTry exporting Mantra’s settings on the old site and importing them on the new site (after a settings reset).
I have migrated several WordPress installations with Mantra active and configured and never encountered this issue.
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.February 21st, 2013 at 18:44 in reply to: une categorie pour les articles de la page d'accueil #3777Zed
Cryout Creations mastermindMy French is quite rusty… 🙂
Do you want to display “news” posts on the standard “blog pots” homepage or in Mantra’s “presentation page”?
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 mastermindYou should put all your code into the child theme’s functions.php file.
Note that (as I have found out the hard way) not all actions are removed properly by just using remove_action(). Also, note that Mantra has more hook functions than the ones listed in your sample code.
The safest way is to use a wrapper function:
function remove_mantra_functions() {
remove_action(...);
// insert all your remove_action calls here
}
add_action('init','remove_mantra_functions');then use add_action() to attach your child theme function replacements.
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 mastermindPlease read C11 in the FAQs.
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 mastermindInserting custom code in the presentation page implies programming knowledge.
Adding somewhat of a sidebar on the presentation page is even more complicated.
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 mastermindUse this custom CSS:
.column-image { border: 3px solid #000; }
The presentation page looks awesome with black borders 🙂
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 mastermindChrome is broken on my Android device, but the fonts in Mantra work just fine with the built-in browser (an unbranded trimmed down version of Chrome).
I see you’ve changed your site setting and no longer using a Google font, so I can’t test your website as well.
But as a general rule, make sure the piece of text in question is not copied from somewhere and has a <font….> tag along 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.Zed
Cryout Creations mastermindThat should not happen 🙂
Try these steps one by one:
- switch to another theme and then switch back.
- disable all installed plugins
- re-upload the theme files (through FTP); this will leave your settings intact (if you uninstall it and then reinstall it through WP you will lose all 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.Zed
Cryout Creations mastermindYes, using custom CSS 🙂
And this is not a bug…
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.February 20th, 2013 at 10:23 in reply to: Additional option for the selection of the article picture #3740Zed
Cryout Creations mastermindFirst off, the “Post Excerpts on Home / Archive and Category Pages” need to be set to “Excerpt” and the “Featured Images as POST Thumbnails” and “Auto Select Images From Posts” options need to be enabled.
Then this is how the theme behaves:
- on a post with featured image but no images inside, the featured image will be displayed
- on a post with featured image and more images inside, the feature image will be displayed
- on a post without featured image but with images inside, the first image from the content will be displayed
- on a post without featured image and no images inside, no image will be displayed
This way you have automatic post images (when you have images inside the post), which you can also override as you wish through the “featured image”.
So I do not believe that this behaviour needs any 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.Zed
Cryout Creations mastermindI think I already answered this through email…
That is not Mantra. It’s either a plugin you are using, your host passing adds through your website or a program on your computer intercepting sites you are seeing and inserting adds in them.
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 mastermindNot likely, but you could have installed/enabled a plugin that messes with the javascript functions used by Mantra.
Disable newly installed/enabled plugins and see if the issue goes away. Then tell us the plugin in question so we can check it out and work out a proper solution.
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 mastermindIt seems you found the way to disable the top menu.
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 mastermindI see a different behaviour on our test site: the posts pictures display just fine, but the Digg Digg floating area fails to display on category pages displaying posts with pictures.
We’ll look into 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.Zed
Cryout Creations mastermindI used featured images for posts on my blog as well, and I did not encounter this issue after updating.
Did you test to see if this happens when all plugins are disabled? Could be an incompatibility between a plugin and the 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.February 14th, 2013 at 18:30 in reply to: cryout_header_hook(); wp_head() causes bug affecting facebook opengraph #3670Zed
Cryout Creations mastermindIf you remove those lines, of course the whole site is going be messed up. Those two lines output about half of the site’s HTML code (including the <head> and header sections).
I don’t know anything about Facebook’s OpenGraph, but I’ll document myself and see if I can come up with an answer.
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 mastermindThe uploader automatically detects the configured site width and configured header height and crops the uploaded header image to that size.
Check your configured options and see if they are correct.
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 mastermindThis should not happen. Could you give us a link to your website?
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.February 14th, 2013 at 10:54 in reply to: Main text overlapping the left sidebar in IE 8, what to do? #3667Zed
Cryout Creations mastermindWhile I can see the issue on your site, I cannot reproduce it on our test installs.
Could you create a support ticket and send us an export of your theme settings? Perhaps a combination of options triggers the problem. (just type anything in the transaction id field).
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 mastermindWe can’t reproduce this issue.
Did you try disabling any plugins and/or switching to one of the default themes and see if the issue still occurs?
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 mastermindDepends on what you’re seeing when you enable debugging.
If it’s just debug information and notices, things should still work.
If you’re getting warning or even errors, that’s bad…
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 mastermindI can confirm the mobile menu is acting a bit strange.
We’re looking into 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.Zed
Cryout Creations mastermindWhat you could do is view your pages/posts with the text editor and make sure all <img> tags which you do not want indented are outside the <p> tags.
But you need to check if switching back to the visual editor doesn’t undo this and wrap images in paragraphs again – making you have to do this check every time you edit the text.
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 mastermindNot quite.
Wordpress’ rich editor usually encapsulates <img> tags inside <p> tags (which have the indentation applied to them)
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 mastermindWith a bit of CSS knowledge, it can be done.
I haven’t looked for a plugin as I was able to just use CSS – see http://www.zedt.euIf 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 mastermindThere are (yet) no options for that, but you can use custom CSS to change any colours.
What particular areas do you want to change the colour to?
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 mastermindI need to see your website to figure this out.
The theme does not control titles capitalization.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 mastermindTrick question 🙂
Wordpress doesn’t accept HTML in the site tagline, so a <br> cannot be used.
A trick would be to limit the width of the site tagline container, so the text wraps at the desired point.To do this, use this CSS:
#site-description {width: 50px; }
and change the value until you split the text into two lines at the desired point.You may also need to play around with line-height and padding/margin to make it fit correctly.
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 mastermindThis is not (currently) a built-in function. Posts can be used for the slider, but anything else on the presentation page is static text/HTML.
It can although be done by anyone good enough with coding and WordPress to write in the code him/her-self for 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. -
AuthorPosts