Search Results for 'found'

  • Author
    Search Results
  • #25979
    Bartek

    Hi there guys,

    Have You already got the pagination on presentation page in magazine view? I can’t find a way to turn it on. I was looking on this forum, and found topic where You write thay it will appear in next version of Parabola however I see here thay people have it already… Can You please help? Thanks!

    Carla Jones

    Hi

    I am having the same issue. Have you found a fix for this as yet?

    David

    This may be related to my post http://www.cryoutcreations.eu/forums/t/have-the-elusive-font-characters-been-moved-around

    Do you have any hard coded CSS (e.g. in a child theme) that is defining what character is displayed after the menu item? I found that in successive versions this has mysteriously changed – apparently because of a change in the Elusive font that is used for symbols (which seems to me to be a very unusual thing to do if my interpretation is correct).

    Ecurbh

    I think I found the solution to this. It’s apparently an issue with get_query_vars() behaving differently in page templates.

    Open content/content-frontpage.php

    Find the line:
    $paged = ( get_query_var('paged') ) ? get_query_var('paged') : 1;

    Replace with:
    $paged = ( get_query_var('page') ) ? get_query_var('page') : 1;

    More info: http://wordpress.org/support/topic/get_query_varpaged-doesnt-seem-to-work-on-page-templates

    Neal

    Well, I found that the problem here lies with the Quick Tabs plugin…which generates its own shortcodes INCORRECTLY. The generated shortcode began [quick-tab…] when it should be [quick-tabS…]. What’s more it looks as though this issue’s been around for at least a couple of years. Seems like it would be an easy enough thing to fix.

    Anyway…problem solved 🙂

    *******************************

    By the way, I’ve been finding that at least 9 times out of 10 the Security Code widget on this forum submission page isn’t working. I tried the page in every browser I have here (IE, Safari, Firefox, Chrome) – most of the time, I get either what looks like a broken image icon or the WORD ‘captcha’ where the captcha code should be. FYI.

    #25664
    ingo

    just found a solution by adding this snippet to the custom css:

    li#text-14.widget-container.widget_text {
    background-color : transparent;
    }

    #25657
    Reshma

    Hi Walt,
    Thanks for replying!

    I don’t have a plugin that lets me use html on the presentation page.

    I looked at documentation regarding warnings and notice and found several answers to that problem, one of them was that the wp-debug must be turned off.
    As it happens, the wp-debug (which I found in my FTP c.panel) was set to true instead of false.
    How that happened…I don’t know…But I turned the wp-debug off and now my site is back to ‘normal’ (at least it looks that way).
    I still don’t know what the warnings and notice were all about, but al least now I can get on with setting up my website.

    Tnx once again for your help!!

    #25609
    Petec

    Argh! I found it.

    I have custom css code to not display the slider, but I still had the help text in the slider content windows. Removed that now and it all seems fine.

    My bad

    #25548

    In reply to: Page for posts

    Hannah

    I tried this and it just gives me 404 page not found. Any tips on why this is happening?
    Thanks!

    #25530
    Terri Grover

    Found the issue. They have moved the settings for the graphics on the presentation page and put in the border on that tab instead of the general graphics. I didn’t realize that the appearance of the slideshow border was controlled separately from the other graphics. Love the theme!

    #25443
    Arpit Agarwal

    Have you found any fix?
    I am facing the same issue

    #25439
    Walt

    1 and 2 can be found in Appearance >> Mantra Settings

    3 you need to pay the theme author for that info. Or if you’re crafty you can do a search with Dreamweaver or any other editor in the theme folder on your local hard drive and upload it via FTP.

    #25194

    In reply to: Missing Media Library

    Kristoffer

    Ahhh, now I found out why the page was down. It was a plugin that messed it all up in some way. I did a few updates on my plugins. I deactivated one of my plugins and then it started working, looks ok for you too?

    #25058
    George G

    Found the problem again without any help from this site

    Kathleen Clohessy

    It appears that this UI does not want to take the link. The name of the plugin is Custom Sidebars by WPMUDEV. It’s the easiest one I’ve found. Good luck to you.

    #24949
    Walt

    meta tags are always found in the header

    #24864
    Mike

    Nevermind, found a way tweaking the code.

    Silfer

    Hi Aaron,

    Thanks for the help rendered; I have followed your instructions but the post titles are still above the images.

    What I did was:

    1. Did as per your instructions. Refreshed, and it did not work.
    2. Found a second <?php tempera_set_featured_thumb(); ?> and did the same thing. It did not work as well.

    What should I do? Please advise; thanks a lot!

    #24827

    In reply to: Presentation Page Font

    David Wildsmith

    Hi,
    Has a solution been found for this?
    I have three installations of parabola working next to each other on one site.
    Two work:
    http://www.7landhand.com/
    http://www.7landhand.com/?page_id=11
    …but this one doesn’t :
    http://7landhand.com/thirst-for-knowledge/

    It’s hard to know what I did differently?
    Cheers,
    David

    #24775

    In reply to: Presentation Page

    Krista

    cancel that, found it.

    #24770
    Peter Ward

    Hi Zierleisten,

    I have used Tempra a couple of time’s, albeit for personal projects, from cryoutcreations and found it to be very good.

    However, I had the exact same issue when using Static Webpages, this is how I fixed mine for Tempra, Parabola may be similar…

    Find and edit content-page.php, it is in the themes/tempra/content/ folder.

    At this point, I would suggest you take a backup of content-page.php before editing, and ideally you should be applying this on a child theme, rather than the parent as it may disappear after any theme updates.

    Find a line that reads <?php the_content(); ?>

    Either before or after this, its down to your preference, add the following…

    printf( __( ‘<span class=”sep”>Posted on </span><time class=”entry-date updated” datetime=”%3$s” pubdate>%4$s</time><span class=”by-author”> <span class=”sep”> by </span> <span class=”author vcard”>%7$s</span></span>’, ‘tempra’ ),
    esc_url( get_permalink() ),
    esc_attr( get_the_time() ),
    esc_attr( get_the_date( ‘c’ ) ),
    esc_html( get_the_date() ),
    esc_url( get_author_posts_url( get_the_author_meta( ‘ID’ ) ) ),
    esc_attr( sprintf( __( ‘View all posts by %s’, ‘tempra’ ), get_the_author() ) ),
    get_the_author()
    );
    ?>

    You may need to change the reference ‘Tempra’ to ‘Parabola’, there are only two.

    This will add the ‘updated’ and ‘author’ fields missing.

    Test again with Webmaster Tools, all should be good now.

    Hope this gets you going.

    #24704
    Tony

    Found out how.

    #24697
    Yigal Oz

    Hi,

    I found a dirty way of making it works. It does related to the Magazine layout, but instead of disabling it from Tempra setting page, I went to the style.css and disabled it from there (By remarking the magazine-layout definition).

    TNX,
    Yigal.

    #24684
    Mickie Sherwood

    Please, I need help. I’ve read the forum questions and found replies to questions similar to mine. But, if my life depended on it, I couldn’t get this Presentation page to show without the demo.

    Situation:
    When the Presentation Page is enabled, the Demo shows at the top. My recent posts show at the bottom of the page, just like I’d like to see them. That part looks fine.

    My questions are:
    1) Is there a simple way to turn off the demo without messing up the presentation at the bottom? If so, how?
    2) Do I still have to go to Widgets, Presentation Page Columns and drag over the Cryout Columns widget, even though my posts are presented very nicely in two columns at the bottom of the Presentation Page? I’m just afraid any changes I make in this area will create a mess beyond the expertise of my noobie skills.

    So, I’ve disabled the Presentation Page until I can get help.

    Thanks to all in advance.

    #24681

    In reply to: Tempera Showcase

    Mickie Sherwood

    Hi,
    I found this template easy to get my initial changes made after installation. I do have to research how to get the Presentation page setup. Also, there are some minor things I need to get corrected.

    But all in all, I’m pleased with my efforts today. See them here: http://www.mickiesherwood.com/blog

    #24623
    Cassie

    Thanks Klasu!

    It worked. I’m teaching myself wordpress as I go so I didn’t even notice the link option when working with menus. I thought one could only add pages to the menu. But you got me investigating and I found it and it worked. Thanks a bunch!

    By the way, in case any Mantra-making people read this, I’ve gone through SO MANY themes until I found this one. I LOVE it. Thank you for your hard work. This theme is exactly what I was looking for.

    #24600
    Zed
    Cryout Creations mastermind

    Wordpress has no way of knowing which links you clicked on to get to that post, so it displays the first category (alphabetically) in which the post is found.

    Posts shouldn’t be placed in several categories if you care about what your breadcrumbs display. Try this plugin and see if it helps you in any way.

    • This reply was modified 11 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.
    #24516
    Riana Zaayman

    Hi. I can’t seem to remove the search bar and the “Nothing Found
    Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post.” text above it. I did go into the widget area and dragged it out of the footer area and I’ve selected “inactive widgets”. Now I have a widget that says “search” on the left hand side with the “add” button next to it, nothing that says “search” in any of the sidebars or footer areas on the right hand side of the page and at the bottom I have “Inactive Widgets” that says “search” below the text. By my website still displays it at the bottom of the page.

    I am not a programmer, nor do I understand it. But in my searches I came upon info, so I tried it out by applying my own logic to it :-). In the editor I went to style.css and replaced the word “block” with “none” in 4 places. That removed the search bar, but the text still remained. I found the text in archive.php, but I did not know how to delete it without messing up the template.

    Please, any help would be greatly appreciated. Thank you!

    #24443
    Jim

    Hi

    I have found that putting the slider dimension both to zero within Presentation Page settings will disable it.

    I hope this helps

    Jim..

    #24347
    Robert

    Hi,

    I have tempera v0.99.
    According to the instructions I set “Poiret+One&subset=latin-ext” in the “Tempera Settings/TEXT SETTINGS/POST TITLE FONT” field.
    It does not work.

    I have found a working solution, but it is very ugly.
    I set only “Poiret+One” in the “Tempera Settings/TEXT SETTINGS/POST TITLE FONT” field.
    I edit wp-content/themes/tempera/includes/theme-styles.php and put .”&subset=latin-ext” in the corresponding wp_register_style(). So the line is the following:
    if($tempera_googlefonttitle) wp_register_style( ‘tempera_googlefonttitle’, esc_attr(“//fonts.googleapis.com/css?family=”.preg_replace( ‘/\s+/’, ‘+’,$tempera_googlefonttitle ).”&subset=latin-ext”));
    It works perfectly and shows the latin extended characters (e.g. Hungarian)

    Could you fix Tempera theme so we can use it without this ugly work around.

    Thanks!

Viewing 30 results - 511 through 540 (of 705 total)