Search Results for 'ie'

  • Author
    Search Results
  • #26101
    Zed
    Cryout Creations mastermind

    You may each experience a different issue.

    If you’re having issues after the update to 1.2, perform a force refresh in your browser (press Ctrl+F5 or Ctrl+R, depending on the browser). Some JS code locations changed and the browser needs to be made to reload all the files.

    If the issues occur without the 1.2 update, make sure you use a combination of latest WP and latest theme versions, try more than one browser and follow the forum’s quick debug guide.


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

    Make sure you are using the latest theme version with the latest WordPress version, try more than one browser and debug plugins (which CAN break Javascript functionality dashboard-wide) according to the quick debug guide stickied on this forum.


    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.
    #26090
    chris

    Update: Jetpack now also shows up in preview with beautiful buttons but not upon publishing…what gives?

    #26087
    Jen

    I’m having the same issue and it’s driving me nuts! Has anyone figured this out? I’m also having an issue getting my images centered. I tried right-aligning too to make sure it wasn’t a calibration issue, and no dice. Any suggestions?

    #26083

    In reply to: Images turn white

    Walt

    Fix? It’s working as intended and was intentionally put into the theme.

    I believe it’s controlled in the css with this line of code:
    #content .wp-caption img {
    transition:all .3s ease-in-out;
    opacity:0.99;
    filter:alpha(opacity=99);

    #26080
    Rudrani Devi Das

    Riana, the ‘Apologies’ text will appear on your blog page before you have uploaded any blog posts. As soon as you post your first one, it disappears automatically.

    I found Tempera very easy, and I had never made a wordpress website before. Then again, I took my time to explore the back end before going gung-ho into publishing anything. Quite frankly, I am still taking my time…

    #26075
    Doris

    I am having the same problem, the settings categories don’t expand when I click on them. The only difference is that I have just installed the Tempera theme and was trying it out for the first time…using Acer C720 Chromebook if that helps…

    #26055
    Jonathon J

    Yep, it worked. I know you weren’t specifically using WooCommerce, but I’ll post up my code anyway in case it helps you or someone else. I copied the WooCommerce templates/global/breadcrumb.php file over to my theme’s directory woocommerce/global/breadcrumb.php. Then I replaced the portion of their code for single pages that are of type ‘product’:

    elseif ( is_single() && ! is_attachment() ) {
    
    		if ( get_post_type() == 'product' ) {
    
    			echo $prepend;
    
    			if ( $terms = wc_get_product_terms( $post->ID, 'product_cat', array( 'orderby' => 'parent', 'order' => 'DESC' ) ) ) {
    
    				$main_term = $terms[0];
    
    				$ancestors = get_ancestors( $main_term->term_id, 'product_cat' );
    
    				$ancestors = array_reverse( $ancestors );
    
    				foreach ( $ancestors as $ancestor ) {
    					$ancestor = get_term( $ancestor, 'product_cat' );
    
    					if ( ! is_wp_error( $ancestor ) && $ancestor )
    						echo $before . '<a href="' . get_term_link( $ancestor->slug, 'product_cat' ) . '">' . $ancestor->name . '</a>' . $after . $delimiter;
    				}
    
    				echo $before . '<a href="' . get_term_link( $main_term->slug, 'product_cat' ) . '">' . $main_term->name . '</a>' . $after . $delimiter;
    
    			}
    
    			echo $before . get_the_title() . $after;
    

    with my code instead:

    elseif ( is_single() && ! is_attachment() ) {
    
    		if ( get_post_type() == 'product' ) {
    
    			echo $prepend;
    
    			if ( $terms = get_the_terms( $post->ID, 'product_cat' ) ) {
                    
                    $referer = wp_get_referer();
                    foreach( $terms as $term){
                        $referer_slug = (strpos($referer, $term->slug));
    
                        if(!$referer_slug==false){
                            $category_name = $term->name;
                            $ancestors = get_ancestors( $term->term_id, 'product_cat' );
    				        $ancestors = array_reverse( $ancestors );
                            
                            foreach ( $ancestors as $ancestor ) {
    					       $ancestor = get_term( $ancestor, 'product_cat' );
    
                                if ( ! is_wp_error( $ancestor ) && $ancestor )
                                    echo $before . '<a href="' . get_term_link( $ancestor->slug, 'product_cat' ) . '">' . $ancestor->name . '</a>' . $after . $delimiter;
                            }
                            echo $before . '<a href="' . get_term_link( $term->slug, 'product_cat' ) . '">' . $category_name . '</a>' . $after . $delimiter;
                        }
                    }
    			}
    
    			echo $before . get_the_title() . $after;

    Same concept as I mentioned before. I just had to replace their main_term variable to the referring term instead. Hope this helps!

    #26053
    Jonathon J

    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.

    The latter part of this statement is correct, the first part is debatable. I have this similar problem, where I have a product in WooCommerce that needs to be in a certain three categories, however, the same category is showing up in the breadcrumbs no matter the means of arriving at the product. I also needed the image of the category accessed from to display above the product description, so again I needed to determine from which category archive the product had been accessed by. Thankfully, WordPress does have a way to determine which link was used to access a page: wp_get_referer().

    wp_get_referer() returns the url of, you guessed it, the referring URL. In this case, it’d be the category archive page that the user was viewing. In order to achieve my goal, I gathered an array of the categories associated with the product/post, obtained the URL of the previous page, looped through each category and checked to see if the category slug existed in the referring URL. If false, then I continued through the loop. If true, then I could persist with the rest of my code to display the specific category image instead of all three at the same time or even the wrong one. I’m about to try applying this same principle to adjusting the breadcrumbs as well. I’ll let you know what I come up with. My code is below for reference if you think it’ll help.

    /**
    * Add Category image above a single course view
    **/
    add_action( 'woocommerce_before_single_product', 'woocommerce_brand_course', 0);
    function woocommerce_brand_course(){
        global $post;
        $terms = get_the_terms( $post->ID, 'product_cat' );
        $referer = wp_get_referer();
        if(!empty($terms)){
            foreach( $terms as $term){
                $referer_slug = (strpos($referer, $term->slug));
    
                if(!$referer_slug==false){
                    
                    $category_name = $term->name;
                    $category_thumbnail = get_woocommerce_term_meta( $term->term_id, 'thumbnail_id', true);
                    $image = wp_get_attachment_url($category_thumbnail);
                    echo '<div class="cat_bundle">';
                    echo '<img class="course-brand" src="'.$image.'">';
                    echo '</div>';
                }
                else{ }
            }
        }
    }
    #26052
    Rachel

    Yep, need a sidebar on the presentation page or, unfortunately, it looks like I may have to go with another theme.

    Those of us who have advertising on our sites need the sidebar or we lose a TON of money when there are no ads on the front page. Honestly, can’t believe this isn’t added. It’s a given on every other template I’ve ever used.

    Absolutely love the theme, but without a front page sidebar it’s unfortunately going to be a ‘No Go’ for me.

    #26044
    Kathy

    I have home page text over and to the right of my jpeg header. I attempted to use “3 Step Bug Check.” That didn’t work. I tried eliminating my unpublished “Home Page” text. That didn’t work. I tried eliminating my “Presentation Page Extra” which is where I placed my published text. This didn’t work. Yow, I’m frustrated. Can you please advise. The theme is “Tempera Child.” HELP!

    #26027
    Luke

    Research has led me to believe that this should be suggested to WordPress instead…

    #26024

    In reply to: Donating and Copyright

    Luke

    If I understand it correctly, nothing will automatically happen if you donate. It’s just to ease your conscience. 🙂

    Taking a quick glance, the relevant code is in ***** CENSORED *****. If you were to do some reading on WordPress child themes you could probably get rid of that. Then again, undoing a parent’s functions isn’t as easy as overwriting a parent’s CSS…

    • This reply was modified 10 years ago by Zed.
    • This reply was modified 10 years ago by Zed. Reason: yes, i censored this :)
    #26019
    Walt

    Have you tried making a custom menu and omitting the pages that you don’t want to show in the navigation?

    Also, FYI, having a hidden page with content and nothing linked to that page holds no SEO value because it’s not being linked.

    Guy Cohen

    The reason might be different width of your slides.
    Also if you asked your slider to be X in width – try to provide images with X width .

    I got a reply here in this wordpress forum.

    This is my website (still in design), you can see that I made the slider with the original images width , just to show the client that the problem is solved then.

    All the best
    Guy Cohen

    #26010
    Walt

    Stop using IE, lol 🙂

    It might be your version of IE… Have you tried it on any other computers running IE?

    Peter

    Yup, that’s my experience too. So at this point it does not seem to me to be possible to optimize the Presentation Page for SEO.

    Hoping someone can correct this observation with a method to apply the Yoast SEO tools to the Presentation Page so that when it is enabled as a default index page for the site it is properly optimized for better ranking with the search engines.

    Otherwise I will have to forego the ease of the presentation page and continue manually building a facsimile with Shortcodes Ultimate and Meta Slider plugins. This combination doesn’t work terribly but has some chronic glitches. And I hate being so dependent on plugins as eventually there are incidences of conflict or uneven updating. Currently at least, within the Tempera Theme Meta Slider does not behave well on smaller devices such as iPhones and tablets. (I use another theme on one of my sites with Meta Slider and it adjusts fine to screen sizes) Also Tempera and when working other page that has a Meta Slider in it, one loses sight of the top row of user interface when toggled in Page Preview. That is, the links, for example to get back to the dashboard or go back to editing the page are still there but invisible.

    #25987
    Kim

    Can someone please assist? I’d be quite grateful. I too, am not able to get a featured image to display in a post, (in any size) in either Firefox or Chrome. Chrome at least displays something that looks like a placemark for what should be featured image, (firefox displays nothing). When I ViewSource in either the tool or the browser, I see no reference to the happily loaded image. It’s such a cool feature and I love the theme and I can’t locate any support replies to inquiries about possible bugs with Featured Images.

    #25980
    Angel-Grafik

    Have you created and modified the file “header.php” for your child theme?
    Had same problem and found that this line had been added in version 1.2:
    header.php line 39
    <a id="nav-toggle"><span>&nbsp;</span></a>

    Advice:
    before updating the theme, make a local backup in a folder named with the theme version via a FTP client.
    Update the theme and make a local backup in a folder named with the new theme version, and compare those two with a diff prog (Diff, Meld, etc.), espacialy thoses files modified via a child theme.
    Very helpfull to discover the changes made and figure out where any problems could come from…

    Hope this will help 😉

    #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!

    Guy Cohen

    Hi,
    I also asked this question in wordpress.org here
    No reply for 4 days already….

    Please kindly try to help
    Guy

    Mani

    Alternatively, I would like to use the columns on my post pages (in conjunction or in lieu of the slider).

    Is either possible? Thank you

    Jerneja TL

    Hi,

    after installing Tempera Version 1.2.0 same problems as above + others:
    – Customization “live” does not work – unclickable. The only link that works there is “close” 🙂
    – Color settings does not work (for example: for menu I choose blue background – is transparent. I set my white color for the page background – is transparent)

    I’ve refreshed page (ctrl + F5), cleand history, cookies, registries … nothing helps

    What else do you suggest?

    Mathieu

    Still not resolved on my side.
    It’s unclickable. Tried forced refresh and disabling plugins and it didn’t change anything.

    Mathieu

    Same problem, I can’t even click on “presentation page” for instance.
    Tried forced refresh, didnt change anything.

    #25919

    In reply to: slide not working

    rig

    Hi I came across your page by accident after searching and searching…. I believe you’re the best! I actually like Parabola as well.

    I am a volunteer at this church and really don’t make anything… but the satisfaction that I am helping others.

    As you can see I have a rough draft going on already:
    http://www.laprimerasf.org

    the old website I had was
    http://www.laprimerasf.com

    as you can see there’s a huge difference:

    before I put long hours to this site, I decided to beg you to help me, LOL…
    I know im a bit ambitious but this is my model of website I some day envision to have:

    http://www.gty.org/

    right know im having difficulty trying to make it look like the demo you have, let alone
    the one I like….

    Thank you for your help…. Any help will be appreciated….

    #25914
    rebekah

    I believe you need to use the posts if you want more than 5 slides, which i need as well. BUT, i find in posts the slides now have lost the function of linking to a specific page…IS this not possible??.

    Melissa

    Thought I had a work around but no.

    I tried to use the theme’s “customize” page to reference a different static front page. Too bad I didn’t try it before I made the page.

    #25884
    pigsound

    after 4 month waiting i wonder what the use of this forum is. it can not be for answering questions – maybe for learning how to be patient and await one’s fate meditating…!?
    this forum is just ridicoulos. shut it down.

    Reshma

    Hi, since my previous post, I changed de readmore button again, because I still wasn’t satisfied with how it looked.
    I *changed the background of the box to transparent, *changed the text color to match my link colors, *changed the hover color to match the hoverlink colors.

    To change box background to transparent or any other color add this code in your custom CSS:
    the background is set to transparent, but you can also add the name or number of a color instead.

    a.continue-reading-link {
    display:inline-block;
    background:transparent;
    etc:etc

    ;
    }`

    To change the text color, add this code under the a.continue-reading-link code:
    Instead of hex number you can also type in the name of the color i.e. green or blue etc.

    a.continue-reading-link { color: #CCCCCC !important; }

    To change the hover color, add this code :
    Again, you can also type in the name of the color instead.

    a.continue-reading-link:hover { color: #FFFFFF !important; }

    I hope this will help anyone who’s struggling with the same problem.

Viewing 30 results - 2,281 through 2,310 (of 3,144 total)