Zed

Forum Replies Created

Viewing 30 posts - 6,331 through 6,360 (of 6,623 total)
  • Author
    Posts
  • in reply to: Visibility of the first image of the post in the index #5541
    Zed
    Cryout Creations mastermind

    Hi.

    So far you’re the only one who told us about wanting to use images from an external gallery.

    The only workaround I see is to set the desired post image as a featured image (which you DO have to include locally in your 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.
    in reply to: Editor not working after WordPress 3.5 Upgrade #5540
    Zed
    Cryout Creations mastermind

    This is not theme related.

    Are you setting the align property for the images?


    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 Slider not loading #5533
    Zed
    Cryout Creations mastermind

    It was most likely caused by a plugin you were using.


    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: Page de Prรฉsentation #5483
    Zed
    Cryout Creations mastermind

    You can add more then 5 slides when you use the creating-slides-from-posts feature of the slider. This is explained in question C16 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.
    in reply to: exclude pages from menu #5480
    Zed
    Cryout Creations mastermind

    You there is. You just have to align the custom menu items properly in the menu design interface to create dropdown menus. The WordPress documentation explains that quite 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

    You have options to show/hide those (and some more) right in “Post Information 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.
    in reply to: 404 page returns a fatal error #5468
    Zed
    Cryout Creations mastermind

    Line 25 in Mantra’s 404.php file reads:

    `<?php get_sidebar(); ?>`

    Your file reads

    `<?custom404_print404message();?>`

    This means you edited the file. Where is that custom404_print404message() function defined in?


    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 image not responsive. #5447
    Zed
    Cryout Creations mastermind

    The header is above the slider.

    And the header is also properly responsive since v2.0.


    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: Using Google Fonts – linkage #5445
    Zed
    Cryout Creations mastermind

    Support for Google fonts was added in version 1.9. Are you using an even older version?

    Right under the selector for the predefined fonts there’s the input field for the Google font names.

    EDIT: I see you’re using 1.8.6. You’ll most likely need to use a plugin to apply Google fonts.

    • This reply was modified 11 years ago by Zed. Reason: edit

    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: Removing Text From Header #5444
    Zed
    Cryout Creations mastermind

    haskee, to “remove text” from the menu (which I assume it means hide certain menu items from the menu) you need to use custom menus.


    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: Replace Slider with Static Image? #5441
    Zed
    Cryout Creations mastermind

    I should let you know that the proper way to do this is via a child theme.

    Your child theme will need 3 files:

    • style.css (with the content documented in the WordPress tutorial)
    • functions.php with the content below:

    `<?php
    require_once(dirname(__FILE__) . “/theme-frontpage.php”);
    ?>`

    • and the modified theme-frontpage.php file copied over from mantra/includes/ to the root ofย  your child theme’s folder.

    This will make sure you will not lose your change at 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: Getting a dash as site title – how to change? #5440
    Zed
    Cryout Creations mastermind

    This options has been moved/merged in version 2.0. It is now in Header Settings – Site Title.

    I’ve updated the FAQ entry to reflect this change.

    You need to add content to your Site Title and Tagline in Settings > General (to avoid the lonely dash in the title) and then you can hide them from the header (if you wish to do so) via the new “Site Title” combined option.


    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: Footer issues after 2.0 upgrade #5436
    Zed
    Cryout Creations mastermind

    Yes, there is a more update-friendly way, but modifying our copyright link is discussed in questions A3 and A4 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.
    in reply to: Need to Edit Footer text powered by #5435
    Zed
    Cryout Creations mastermind

    Please see questions A3-A4 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 mastermind

    Add non-breaking-spaces&nbsp; – and plenty of 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.
    in reply to: Slider small images 120px #5433
    Zed
    Cryout Creations mastermind

    The column images widths are relative to the total site width. This is the (over-complicated) formula:

    image_width = [ site_width – 60px – (0.04 x site_width x column_count) – (6px x column_count) ] / column_count


    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

    They were always placed on the same line, ever since v0.5.

    Use this custom CSS:

    `#site-description { clear: both; margin-left: 40px; margin-top: -20px; }`


    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: list of shortcodes #5430
    Zed
    Cryout Creations mastermind

    There should be 4 custom buttons in the Visual editor toolbar for some shortcodes, but having them properly documented is the correct way to do things.

    But the shortcodes are a relatively new addition to the theme and they didn’t quite make it in the FAQs yet.


    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: Change color? #5429
    Zed
    Cryout Creations mastermind

    Hi.

    There’s nothing a bit of custom CSS can’t fix ๐Ÿ™‚

    a)

    `.entry-meta { background: #000; }`

    b)

    `#access ul li.current_page_item > a, #access ul li.current-menu-item > a { color: #fff !important; }`


    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: exclude pages from menu #5428
    Zed
    Cryout Creations mastermind

    This is what a custom menu is for.


    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: slider presentation page #5427
    Zed
    Cryout Creations mastermind

    Hi, haskee.

    Without seeing or site I can only guess. Either the iamges URLs are invalid, or there’s a javascript conflict in your WordPress. Disable all plugins and see if that makes the header works.


    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: Meta tags on Presentation page (homepage) #5426
    Zed
    Cryout Creations mastermind

    The homepage <title> tag takes it’s content from the Site Title and Tagline defined in WordPress under Settings > General.


    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: favicon does not work suddenly #5425
    Zed
    Cryout Creations mastermind

    There is indeed an issue with how Mantra displays thelogo/favicon in the settings page, but both the logo and the favicon should work properly in the website.

    Your favicon file as defined by the url – http://simplycarriacouwebdesign.com/doyleguides/wp-content/uploads/2013/04/favicon.jpg – does not exist.


    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: Custom logo does not display on iPhone / Safari #5424
    Zed
    Cryout Creations mastermind

    I do see an issue with your logo, but to make this even weirder, I’m seeing it in an Android tablet’s built-in browser (which is technically an unbranded Chrome).

    I’ll dig this up some more and see what I come up with…


    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: no mobile menu (tinynav) with Windows hosting? #5423
    Zed
    Cryout Creations mastermind

    The problem with the Windows hosted version is that it has incorrect EOL (end-of-line) characters, resulting in an empty line every line of text. This makes the frontend.js coding break, causing all of the javascript (which also takes care of the mobile menu) malfunction.

    Fix the files to have proper EOL on Windows and this issue will go away. Try to re-upload all files and upload them as binary instead of ASCII.


    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: Can Not Edit Menu Bar #5418
    Zed
    Cryout Creations mastermind

    You could be having a javascript issue. Try disabling all plugins and see if that solves 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: Google Fonts #5417
    Zed
    Cryout Creations mastermind

    Do you see the same behaviour on more than one computer/internet connection ?


    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: website tittle over top menu trimmed #5416
    Zed
    Cryout Creations mastermind

    Hugo, we still don’t know what’s causing your issue (we believe it to be browser related, but we could never reproduce it on our computers), but it should be fixed (or at least prevented from breaking Mantra completely)ย  in v2.0.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: Old comments are not appearing #5415
    Zed
    Cryout Creations mastermind

    Mantra (and themes in general) doesn’t mess around with anything database related.

    We have been using Mantra and WordPress on this website (and on the previous domain) since Mantra was created… and that was 2 years ago. Old comments are still readable and nothing changed.

    Perhaps you had some comments related plugin that messed with those fields which you uninstalled/disabled in the meantime.


    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: Shortcodes In Presentation #5297
    Zed
    Cryout Creations mastermind

    Shortcodes don’t yet work on the presentation page, but they should work starting with v2.0.2 (or 2.0.3).

    Widgets are another story and won’t be supported directly, but you could still add them via a widget-as-shortcode plugin.


    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 - 6,331 through 6,360 (of 6,623 total)