Search Results for 'found'

  • Author
    Search Results
  • #40627

    After going thru the options again I found the Static Page options – solving my problem.
    But now I have 2 places to specify template for the page which seems to be overkill – as I need the other one to specify the parent page

    #40054

    Thank you for your answer. I found my solution by putting a background-image on nivo-caption.
    Now the problem is that when the screen is too small, the background-image goes under the slide.
    As you can see here if you reduce your windows size : click

    Do you know a solution ?
    Thank you 🙂

    #40008

    In reply to: read more link

    ok I found a solution

    #39802

    Workaround to my quest…
    Found a good plugin – https://wordpress.org/plugins/q2w3-fixed-widget/
    Its simple to use. After installing it, under Appearance->Widgets, there are check boxes labelled “Fixed Widget” displayed under each widget so that each widget can be ‘fixed’ or floated separately. On our site rtfzine.org I also installed Display Widgets from https://wordpress.org/plugins/display-widgets/ which allows each page to have it’s own selection from your available widgets -or NO widgets at all displayed. This is probably an overkill workaround to our need to have a special piece of floating text appear on only one page. Using Display Widgets I’ve created a widget which is just plain text which will display a message on just one page. I did this because all the other floating element plugin I found required a unique document element ID and I don’t know how to determine Mantra element IDs. There is probably a custom CSS snippet which could be included in the Mantra Options->Miscellaneous Settings section?
    If anyone can tell me now to determine the element ID or tags that Mantra’s PHP dynamically generates On-Load I would be very appreciative.
    Cheers,
    -Mike

    #39757

    In reply to: Missing text in slider

    Thank you for your answer Zed.

    I found out friday night what was the origin of the problem.

    It’s the “WP-Properties” addon that overwrite the css of a part of the frontpage, so it makes disapear this text. I totaly forgot to disable this one when I was trying your troubleshooting guide 😐

    As i were away for the weekend, i couldn’t send a message saying that problem is now partially solved (in fact, when i “deactivate” (or more precisely, when i change some stuff on the presentation) the default WP-Properties’ css, there is now another problem, but only in “properties”, so i’m working on it).

    #39656

    Ignore last request – i found it under Mantra graphics settings

    #39654

    finally I found the change log on “readme” file
    https://themes.trac.wordpress.org/browser/nirvana/1.2.9/readme.txt?rev=67011

    here are the changes fot the lest update:
    = 1.2.9 =
    * Improved comments display function to take languages with multiple plural forms into account
    * Fixed search input aspect on Sarari
    * Updated translations

    Sure.
    Here it is:

    <?php
    /**************************
    *  Nirvana extra social icons child theme example
    *  version 0.1 / 20150525 / for Nirvana v1.0.4 and up
    *  (c) Cryout Creations
    * ***********************/
    
    $extraSocials = array(
    	'WhatsApp',
    	// edit and/or add your extra socials here;
    	// leave this array empty if you only want to replace the images in your child theme
    	// the new social icons image files need to be placed in the nirvana-extrasocials/images/socials folder,
        // with the exact same name(s) used above; capitalization DOES matter!
    );
    
    // *** no configurables below; only edit if you know what you're doing ***
    
    // EXTRA SOCIAL ICONS CODE 
    // overload the social icons array
    function child_override(){
    global $socialNetworks, $extraSocials;
    if (is_array($socialNetworks))
          $socialNetworks = array_merge( $socialNetworks, $extraSocials );
    };
    // add hook for overload function
    add_action( 'after_setup_theme', 'child_override' );
    
    // custom child theme socials display function - it picks the image file if found in the child theme
    function nirvana_set_social_icons($idd) {
    	$cryout_special_keys = array('Mail', 'Skype');
    	global $nirvanas;
    	foreach ($nirvanas as $key => $value) {
    		${"$key"} = $value ;
    	}
    	echo '<div class="socials" id="'.$idd.'">';
    	for ($i=1; $i<=9; $i+=2) {
    		$j=$i+1;
    		if ( ${"nirvana_social$j"} ) {
    			if (in_array(${"nirvana_social$i"},$cryout_special_keys)) :
    				$cryout_current_social = esc_html( ${"nirvana_social$j"} );
    			else :
    				$cryout_current_social = esc_url( ${"nirvana_social$j"} );
    			endif;	
    			$icon = get_stylesheet_directory_uri().'/images/socials/'.${"nirvana_social$i"}.'.png';
                $childicon = get_stylesheet_directory().'/images/socials/'.${"nirvana_social$i"}.'.png'; 
    			
    			if (!file_exists($childicon)) { $icon = get_template_directory_uri().'/images/socials/'.${"nirvana_social$i"}.'.png'; }; ?>
    
    			<a rel="nofollow" href="<?php echo $cryout_current_social; ?>"
    			class="socialicons social-<?php echo esc_attr(${"nirvana_social$i"}); ?>" title="<?php echo ${"nirvana_social_title$i"} !="" ? esc_attr(${"nirvana_social_title$i"}) : esc_attr(${"nirvana_social$i"}); ?>">
    				<img />" src="<?php echo $icon; ?>" />
    			</a><?php
    		}
    	}
    	echo '</div>';
    } // nirvana_set_social_icons()
    // END EXTRA SOCIAL ICONS CODE
    
    ?>
    #39385

    In reply to: Presentation Slider

    Hi Zed,

    I am a big fan of parabola. and tempera. I just upgraded to the latest WP install WordPress 4.6.1 and found that the presentation slider doesn’t work at http://www.doubleconnect.net/. There is a white space where the slides were and the revolving circle rolling in the middle of it.

    I contacted a techie at Bluehost and he could not what the problem was. We disabled the 4 plug-ins but that didn’t affect things.

    Do you have any suggestions as to what might be the problem?

    thanks,
    mark

    #39254

    In reply to: multilanguage version

    I found solution so my problem is solved 🙂
    Magda

    #39167

    Kaaaaaay! I might never’ve found that – thanks SO much for the help!

    Fast, effective, friendly support for your free-version users? I’m sold. You’ll have a new customer when I take this site live.

    #38931
    Zed
    Cryout Creations mastermind

    Previous Parabola versions used a lot of fixed font sizes for various areas – we’ve tried to improve their customization by making them relative to the configured general font size. If fonts are too large after the update, try lowering the general font size.

    Menu items size can be reduced with custom styling:
    #access a span { padding: 3px 8px; }

    Previous theme version can be found either in WordPress’ repository (you’ll need to guess the links or browse the old tickets) or in our archive.


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

    I found one that works quite well, not sure what makes it different. Responsive Lightbox

    #38687

    I found a simple way to remove this link, you can find instructions here:

    https://www.cryoutcreations.eu/pricing

    Good luck and enjoy!

    #38684

    Thank you so much for your swift and complete reply!

    Yesterday we found another work around using an optimizer plugin which enabled us to change the behavior of WordPress with JavaScript, so it worked again. We will try your workaround too, since the less plugins needed the better.

    The plugin we used it called ‘autoptimize’.

    We have also changed some of the code to change behaviour with images on the frontpage etc, is this something you would like us to share with other users here?

    • This reply was modified 8 years ago by Nigel.
    #38471

    I found it! There was a folder called mobile in my WordPress directory. Maybe my host created it. Anyway, I renamed it and all is well. Not a theme issue after all. Thanks

    #38398

    Following up on my own post. After more searching of this Forum I eventually found what I think is the answer. Our site is using the header background image, set by WordPress -> Appearance -> Header (I had not appreciated that before). This seems to resolve my problem, so that I no longer need an edited header.php file in the mantra-child directory.
    Apologies for the false alarm.

    John Cordes

    #38235

    In reply to: woocommerce + fluida

    Zed
    Cryout Creations mastermind

    WooCommerce looks for the presence of a specific line of code in the theme, otherwise it displays that message.
    We have not added that line of code in the theme as we have not tested WooCommerce compatibility in depth – as such, WooCommerce’s presence in Fluida’s features on our site is by error (for now).

    Did you use Fluida with WooCommerce? Have you found any issues with functionality / layout / styling?


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

    In reply to: eliminate a category

    Zed
    Cryout Creations mastermind

    Categories are found under Posts > Categories in the dashboard – also, categories don’t get listed in WordPress’ automatically generated menu. You should create a custom menu (see link in my signature) to properly control your menu’s content.


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

    Fluida doesn’t (yet) include a presentation page like our other themes, so the Blog template does not have a usage scenario (if you need a different page to display your blog while assigning a static page as the homepage, that can be done with WordPress’ Reading options).

    We were also asked to remove this template during the review because the reviewer found no logic for 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.
    #37840
    Stefan

    Hi there!

    Found out that the problem is caused by an outdated plugin (WPaudio MP3 Player 3.1). When deactivated, the menu is displayed perfectly!

    Thanks anyway for the great theme!

    #37818
    Vos

    Has anyone found a solution available for this problem?
    I have the same problem and do not know how to fix it.

    #37735
    Steph Lehmann

    Never mind. I found it. Thanks!

    #37438
    Luuk

    @Lanie

    Yes i had found that option but it is for number of words, i was looking for number of characters since if you have a post with a lot of long words it will show up longer than the other 2 posts in the featured snipet. but i’ll figure it out with writing intro’s.

    As for the other problem, its no longer there but still showing the read more, it could have something to do with the fact the post has been imported from another site. i think it will sort itself out once i finish the layout and move to the live site!

    #37350
    Ian

    UPDATE: In reading a non related FAQ question regarding colors I think I found the solution, which kind of blew me away. By simply deleting the background color code in the theme panel, the background becomes transparent, which worked for me.

    Certainly a much easier approach too, than messing with the CSS.

    #37215
    Jim

    Thank you! Actually just found that and was coming here to update my question. Good to know about the shortcode. That might help them in the future to not have to mess with the guts.

    #37208
    Shantinath Chaudhary

    Thanks a lot Zed. I finally found the code, and removed it. Thanks so much for the help 🙂

    #36788
    Sean Gough

    I have found the solution. You have to edit frontpage.php. Search for “readmore” and then edit the text below so the href contains the url you want. Only edit the text in the first set of < > i.e. <?php echo esc_url($slide[‘link’]) ?>

    <div class=”readmore”>
    <?php echo esc_attr($nirvana_slidereadmore) ?> <i class=”column-arrow”></i>

    Edited by Zed: This is not the solution.

    • This reply was modified 9 years ago by Zed.
    #36718
    Wolfgang

    Hello,

    although I remember that I had earlier noticed the checkbox “Keep header image aspect ratio”, I can not find it now. No idea, why!
    But I found the following checkbox:
    Design -> Nirvana Settings -> Kopfzeile (header) -> Kopfzeilenbild (header photo) -> Bild (photo) responsive
    With “yes” my header photo including the face is not PERFECT

    Thanks
    Wolfgang

    #36591
    Brian

    I too have the same issue as my Nirvana settings are no longer available. Now, I lost these settings on one of my other websites and found the updated versions of WordPress and Nirvana are not compatible. So I made every effort not to update my Nirvana version. Recently I tried to access the settings and found my most used site as come across the same issue. Do you have a simple fix for this issue?

    Thanks you,
    Brian

Viewing 30 results - 301 through 330 (of 705 total)