Forum Replies Created
-
AuthorPosts
-
We host on our own VPS, and so I have made that modification. The footer and socket still don’t show up on individual blog posts.
Next idea?
Thanks,
DavidNope, that doesn’t work either. Next idea?
This reply has been marked as private.Thanks, Yigit, but that didn’t work. Next idea?
I’ve tried setting those. The default setting for the site is “Display the footer widgets & socket” – changing those parameters from with the individual blog posts doesn’t alter them at all.
This reply has been marked as private.I updated it using the FTP method – all good! I’ll go test the custom icon font upload feature.
I’m trying to update from within the Enfold options (Theme Update) and it’s telling me that I’m already running the latest version. Is that not working?
This reply has been marked as private.This reply has been marked as private.This reply has been marked as private.I also tried adding some icons using that tutorial, and I got the following error when I tried to upload the zip file:
Couldn’t add the font.
The script returned the following error:Fatal error: Call to a member function attributes() on a non-object in /home/tcweb/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/font-manager.class.php on line 179
Thanks, but that isn’t quite what I was talking about. I was hoping to create our own unique icons and add them to a custom library. This just shows me how to go and select more from Fontello’s licensed library to add to my choices.
So is it possible for us to develop our own icons?
Theoretically, I understand what you are saying, but I don’t understand why you would go out of your way to treat portfolio content any differently. And why can’t it just access the permalink for the entry to create the breadcrumb? That never changes.
Actually, as I look now, perhaps this is why the header and breadcrumb are removed from the blog and posts. If that’s so, then I really don’t have much of an option but to do the same thing on the portfolio. It’s too confusing to display different breadcrumbs, especially in the instances when I can’t control it, like on the home page where it’s pulling in a random sub-page as the lead-in.
Personally, I also think it’s way too much to expect that each portfolio entry (or any other rich content) would only display on one single page, especially when it comes to the existence of sidebar widgets and the avia sliders.
Peter:
It still doesn’t appear to be working.
Please try to access individual portfolio items from the following pages and check the breadcrumbs:
(From the post slider or the portfolio grid under “Nice Work (If You Can Get It”)
http://2013.traverscollins.com/us/people/bill-collins/(From the portfolio grid under “WORK: Our Latest & Greatest”)
http://2013.traverscollins.com/(From the portfolio grid under “Advertising & Media Work” and from the sidebar widget “OUR LATEST WORK”)
http://2013.traverscollins.com/us/marketing-capabilities/advertising-media/Most of the time, it seems to be creating the breadcrumb from whatever page the post had loaded into, rather than its actual breadcrumb. But occasionally, especially from the home page, it’s still just strangely defaulting to “Home / Us / People / Sarah DiPofi”….
I’m not sure what else to say, but I’ve tested this in multiple browsers, logged in and logged out, and it hasn’t gone away at all. I’m pretty close to just turning the headers off for portfolio entries. Do you want to give it another try?
Hi Peter:
It’s still not working. The problem isn’t necessarily from the “Work” page, but when you enter any portfolio entry through a post slider or a portfolio grid added to other pages. It’s modifying the breadcrumb in a way that sometimes seems tied to the page that I just navigated from, and other times it is seemingly random and not at all related.
Try navigating from the home page, or any of the subpages of “Marketing Capabilities,” and you’ll see what I’m talking about.
This reply has been marked as private.This reply has been marked as private.This reply has been marked as private.Adding that code as well removes the entire breadcrumb, leaving only “You are here:” –
Just to confirm, I’ve added both of these suggestions to the end of the functions.php file.
require_once( ‘functions-enfold.php’);
add_action(‘after_setup_theme’,’avia_remove_portfolio_breadcrumb’);
function avia_remove_portfolio_breadcrumb(){
remove_filter(‘avia_breadcrumbs_trail’,’avia_modify_breadcrumb’);
}if(!function_exists(‘avia_modify_single_portfolio_breadcrumb’))
{
function avia_modify_single_portfolio_breadcrumb($trail)
{
if(!is_single() || get_post_type() != ‘portfolio’) return $trail;
$category = get_the_category(get_the_ID());
$newtrail = array();$parents = get_the_term_list(get_the_ID(), ‘portfolio_entries’, ”, ‘$$$’, ” );
$parents = explode(‘$$$’,$parents);
if(!empty($parent_item[0])) $newtrail[] = $parent_item[0];return $newtrail;
}add_filter(‘avia_breadcrumbs_trail’,’avia_modify_single_portfolio_breadcrumb’);
}Try again? Thanks…
This is kind of working, but it needs a tweak – it is now adding every selected work category into the breadcrumb sequence:
How can we get it to just be “Home / Work / Portfolio Entry”?
Thanks for your help!
dcThis reply has been marked as private.October 14, 2013 at 3:08 pm in reply to: Portfolio – Strange right border on individual entries #175081That’s it! Thanks so much.
October 11, 2013 at 4:36 pm in reply to: Portfolio – Strange right border on individual entries #174258This reply has been marked as private. -
AuthorPosts