-
AuthorSearch Results
-
July 8th, 2014 at 19:47 #26053
In reply to: WooCommerce: Wrong breadcrumbs displayed
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{ } } } }July 8th, 2014 at 16:47 #26052In reply to: Sidebar/Widgets on Presentation Page (Below Slider)
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.
July 7th, 2014 at 23:31 #26044In reply to: Header with Unwanted Text
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!
July 7th, 2014 at 00:20 #26027In reply to: Category-limited post navigation
Luke
Research has led me to believe that this should be suggested to WordPress instead…
July 7th, 2014 at 00:03 #26024In 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…
July 6th, 2014 at 18:56 #26019In reply to: Add Pages Visible to Google but Not in Menu
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.
July 6th, 2014 at 08:25 #26013Guy 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 CohenJuly 5th, 2014 at 22:31 #26010In reply to: Loading extremely slow in Microsoft IE
Walt
Stop using IE, lol 🙂
It might be your version of IE… Have you tried it on any other computers running IE?
July 5th, 2014 at 01:57 #26001Peter
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.
July 3rd, 2014 at 20:03 #25987In reply to: Featured images on homepage and post
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.
July 2nd, 2014 at 23:22 #25980In reply to: New Mobile Menu disappears
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> </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 😉
July 2nd, 2014 at 22:33 #25979In reply to: Pagination on Presentation Page Broken
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!
July 1st, 2014 at 16:23 #25963Guy Cohen
Hi,
I also asked this question in wordpress.org here
No reply for 4 days already….Please kindly try to help
GuyJuly 1st, 2014 at 02:12 #25955Mani
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
June 29th, 2014 at 20:34 #25948Jerneja 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?
June 29th, 2014 at 04:28 #25945Mathieu
Still not resolved on my side.
It’s unclickable. Tried forced refresh and disabling plugins and it didn’t change anything.June 27th, 2014 at 19:12 #25925Mathieu
Same problem, I can’t even click on “presentation page” for instance.
Tried forced refresh, didnt change anything.June 27th, 2014 at 06:52 #25919In 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.orgthe old website I had was
http://www.laprimerasf.comas 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: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….
June 26th, 2014 at 20:11 #25914In reply to: How can I add additional Slides to Slider
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??.
June 24th, 2014 at 15:46 #25890Melissa
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.
June 24th, 2014 at 12:04 #25884In reply to: strange "read more" behavior in posts
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.June 22nd, 2014 at 16:37 #25864Reshma
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.
June 22nd, 2014 at 16:35 #25863In reply to: Google authorship
Dave
I am having the same problems with Google’s authorship. I’ve set the correct setting with Google +1 and have written the scripts in my html of my homepage. The results are showing my name as author, but it isn’t posting my picture in the search results.
June 22nd, 2014 at 10:22 #25860In reply to: Google authorship
Sasha
I am tryin to add the authorship for my http://www.plexusslimreviews.net, which is about
June 19th, 2014 at 23:29 #25849In reply to: Stylesheet media print
zettelberg
Is there nobody outside there who has already done this? – It’s just that I don’t want to mess up my theme by changing too many things where I should not (I don’t have much experience yet in customizing WordPress). May be someone could share his expierence and mastery? – I’d be happy!
June 18th, 2014 at 10:56 #25832Andrew Dishes
I use the same theme on one of my websites. The Youtube shortcode didn’t work for me as well. So I I installed a plugin called Youtube shortcode. I created a new page, created the YouTube Code with the Youtube Button in the editor and copied this code to the presentation page.
I prefer to use this plugin because you can customize a lot of options. I hope you can get it to work this way.
Checkout http://www.purarazaespanola.es for an example.
June 16th, 2014 at 21:39 #25822In reply to: Put captions under images
Carmen K. Sisson
This has driven me crazy for the better part of the day. Thanks so much for the quick solution and the beautiful template. I’m happier with my website (though it’s still a work in progress) than I’ve been in years.
June 16th, 2014 at 10:47 #25813In reply to: Change tab in my web (theme mantra)
Maria
Hello,
I need help with the menu of theme Mantra.
I want the main menu tabs are disabled and not loading any page, but have subpages below.
How can i done so that the main tabs not load any page?
I tried to put on the label of navigation a # but does not work.Thanks
June 16th, 2014 at 10:33 #25812In reply to: Google authorship
Christina
Hi I’m having a consistent error with my structured data. Apparently the update field is missing from this theme. Is there any easy way to solve it. It’s a shame as its affecting all my posts. Thanks in anticipation
June 14th, 2014 at 15:44 #25799Gavin
Hi,
Thanks for your quick response 🙂
I just tried updating as you advised and it appears to have no difference.
Thanks again!
-
AuthorSearch Results