Forum Replies Created

Viewing 22 posts - 31 through 52 (of 52 total)
  • Author
    Posts
  • Thanks Josue. That does open the ajax box below the photos, but it also moves the page up so high that now the portfolio images are no longer viewable; the top of the ajax container goes to top of browser window for the most part. I think the way google’s image search works is probably best; it opens in center of the window pretty much.

    Thanks Gunter. Could you tell me then how I would have it open BELOW the container of images? I can’t find any setting that affords us that option anywhere; forgive me if it’s staring right at me. I have hunted the forum for “Ajax Below” and can’t find any mention of that being something we could do.

    Sure, although this is the case with all your sites, it’s just how the ajax portfolio works. It’s under construction at: http://realfreshclient.com/sandbox/company/team/ (abil2 is the pw to see the site).

    What they are asking for is, when you click on Tom, and the tom page opens above the row of pics:

    1.) Can we have something happen to the Tom pic in the row to indicate that’s the image we’re on. Some sites, like google image search for example, use the little pointer that goes down into their larger box, some sites use a color overlay. Yours does nothing and we wondered if it could.

    2.) People are really used to having these ajax boxed areas open below, not above, and client is asking if that is possible with this theme.

    These are the main issues giving the client pause about using Enfold.They are liking everything else but this one I have been unable to begin to solve. Here’s a site where it works the way they like (and the way google image search works, btw, as well):

    http://www.iorahealth.com/about-us/our-stories/

    See how the item opens right below the image selected, no matter what row it’s in at that screen width? AND there’s a pointer back to the image? I believe Iora is using the Builder Theme but to accomplish this page, they seem to be using the Views plugin.

    So that may be what I need to hire someone to try to do in Enfold. The thing is, enfold is already offering ajax, so I can’t help wondering whether this is solvable without an additional plugin by altering the way Ajax is working.

    Thanks.

    Hi Elliot,
    Thank you, but that isn’t what I’d like to be able to do. Perhaps it would help if I gave a specific example:

    If I create a portfolio category called “weddings” with the subcategories, “wedding portraits,” “wedding moments,” “engagements”, I’d like to be able to show ALL the images on one page, with sortability by their subcategories.

    Without having to upload every single photo separately and use it as a featured pic.

    right now, all I can accomplish is to create a portfolio item with a set of images, define it as “wedding portraits,” add a featured image, etc. And then show a page with the thumbnail for each portfolio category, upon which they can click to see JUST the images from that category. Via ajax or other means. Yes, with ajax the other categories are still at the bottom of the page, but the IMAGES from that category are not showing.

    My only workaround is to take each individual image and add it as a single portfolio item. There is no way to pull various sets of of images from a portfolio category onto a combined page.

    in reply to: Pages shifted on 1920 x 1080 screens, all windows browsers #385971

    I just wanted to pop back in to let you know we narrowed down this issue and it had to do with one particular layerslider that was causing some issues. Deleting it has resolved them. Sorry for troubling you guys.

    in reply to: Animation on image does not work on first mouseover #385189

    Andy I had done all of that and more before I added my comment. However I can only keep the link I sent you to in that pared down, everything-off state for about another half day, so I am going to hope others can keep working with you on this and that the next update fixes the problem. I can only tell you that for me, updating enfold, turning off all plugins, and even removing any and all customizations right down to our logo, did not fix theses problems for us.

    in reply to: Animation on image does not work on first mouseover #384150

    I’m having the same problem. Thus far I staged the site, removed all customization by going back to parent theme, updated theme, updated WP, turned off all plugins. For me, the hover not only doesn’t appear until the second time, but text below the item jumps down about 50 pixels:

    http://banetti.staging.wpengine.com/maximo-smartstart-for-eam/ (hosted on WPengine) (see link under “deeper dive” at bottom of page.

    When you test this, note that if your cursor goes off the thumbnail image at all, the animation works after that. Reload the page and be careful to do a clean mouse sweep into the image itself; the animation seems to try to load but does not.

    in reply to: Links to Tabbed Areas #381055

    I ended up solving this problem with a plugin plus a custom script, custom php, and custom css.
    The plugin author did the heavy lifting here, so while I have his permission to share the customizations, if you use this workaround please thank him.

    The plugin I used was “Page Scroll to id.”
    In the plugins settings, under “offset,” add “#header:fixed”.
    Also where you see “scroll to location hash,” unclick the Enable button.

    Then you will want to do the following three customizations:
    In Child Theme functions.php:

    <?php
    
    /*
    * Add your own functions here. You can also copy some of the theme functions into this file. 
    * WordPress will use those functions instead of the original functions then.
    */
    
    if(!function_exists('child_theme_frontend_scripts'))
    {
    	
    	if(!is_admin()){
    		add_action('wp_enqueue_scripts', 'child_theme_frontend_scripts');
    	}
    	
    	function child_theme_frontend_scripts()
    	{
    		$child_theme_url = get_stylesheet_directory_uri();
    		wp_enqueue_script( 'custom-script',  $child_theme_url.'/js/custom-script.js', array('jquery'), 1, true);
    	}
    	
    }

    In Child Theme’s custom.css, add the following: (You may need to alter the colors for your own instance.)

    .main_color .sidebar .current-menu-item>a._mPS2id-h{
    color: #919191;
    font-weight: normal;
    }

    .main_color .sidebar .current-menu-item>a._mPS2id-h:hover{
    color: #8bba34;
    }

    .main_color .sidebar .current-menu-item>a._mPS2id-h.mPS2id-clicked{
    color: #222222;
    font-weight: bold;
    }

    .av-main-nav .current-menu-item > a > .avia-menu-fx{
    opacity: 0;
    }

    .header_color .main_menu ul:first-child > li.current-menu-item > a,
    #top .header_color .main_menu .menu .avia_mega_div ul .current-menu-item > a{
    color: #919191;
    }

    .av-main-nav .active-parent-item > a > .avia-menu-fx, .av-main-nav .current-page-parent > a > .avia-menu-fx, .av-main-nav .current_page_parent > a > .avia-menu-fx,
    .av-main-nav .active-parent-item.current-menu-item > a > .avia-menu-fx, .av-main-nav .current-page-parent.current-menu-item > a > .avia-menu-fx,
    .av-main-nav .current_page_parent.current-menu-item > a > .avia-menu-fx,
    .av-main-nav .current_page_item > a > .avia-menu-fx{
    opacity: 1;
    visibility: visible;
    }

    .header_color .main_menu ul:first-child > li.current-page-parent > a, .header_color .main_menu ul:first-child > li.current_page_parent > a,
    .header_color .main_menu ul:first-child > li.current_page_item > a,
    .header_color .main_menu ul:first-child > li.current-menu-item > a:hover{
    color: #666;
    }

    
    
    <strong>Create a new file named custom-script.js and put it in a folder named "js" in the Child Theme folder.</strong>
    
    

    /* opens the associated tab of page scroll to id target elements */
    (function ($) {
    $(window).load(function(){
    /* scroll to tabs when page loads if necessary */
    var loc=window.location,tabs=$(“.tab_titles”);
    if(loc.hash.indexOf(“tab-id-“)!=-1 && tabs.length){
    var activeTab=$(“.active_tab”),activeTabID=activeTab.attr(“data-fake-id”),activeTabMenuItem=$(“a[rel=’m_PageScroll2id’][href*='”+activeTabID+”‘]”),delay=500;
    setTimeout(function(){ $.mPageScroll2id(“scrollTo”,activeTabID+”-container”,{clicked:activeTabMenuItem,offset:_offset()}); },delay);
    }
    /* click event to open target tab */
    $(“a[rel=’m_PageScroll2id’]”).on(“click.mPS2idTab”,function(e){
    var el=$(this),href=el.attr(“href”),targetID=href.split(“#”)[1],target=$(“#”+targetID),tabClass=”tab_content”,parentTab=target.parents(“.”+tabClass),
    targetTab=parentTab.length ? parentTab : target.hasClass(tabClass) ? target : null,
    locHash=loc.toString().split(“#”)[0],hrefBase=href.split(“#”)[0];
    if(hrefBase===locHash){ //same page links: scroll to and open tab
    if(targetTab){
    var tabID=targetTab.attr(“id”).replace(“-container”,””),tabLink=$(“div[data-fake-id=’#”+tabID+”‘]”);
    el.attr(“data-ps2id-offset”,_offset());
    tabLink.trigger(“click”);
    }
    }else{ //different page links: go to original theme url
    el.attr(“href”,href.replace(“-container”,””));
    }
    });
    function _offset(){
    var origOffset=$(document).data(“mPS2id”).offset,offsetVal=$(origOffset).length ? $(origOffset).height() : origOffset;
    return offsetVal+tabs.outerHeight()+$(“#wpadminbar”).height(); //set to return offsetVal; to remove extra offset
    }
    });
    })(jQuery);
    `

    To add menu items,
    Add urls that identify page, tab id, and add -container at the end. Example: “http://yourwebsite.com/page/#tab-id-2-container&#8221;
    Add “m_PageScroll2id” to the link Relationship (XFN) for each. If this box doesn’t appear you can turn it on under “screen options.”

    I’m hoping the issues with targeting links inside tabbed or boxed areas is something that will be fixed in a future update of the theme, but for now, this works for us. I hope it helps others.

    in reply to: Links to Tabbed Areas #377121

    So just to be clear in case anyone gets to this, if I use a link to a tabbed area such as:
    http://banetti.staging.wpengine.com/portfolio/highered-ucsd/#tab-id-2 (hosted on WPengine)

    It goes to the center or bottom of the boxed tab area, instead of the top. I’d like it to go place the tab title at top of browser window, or at least put it somewhere so my user doesn’t then have to scroll back up to see the beginning of the content.

    I have tried setting an anchor target inside the tabbed content, and setting a link up for it, but while that does set the page in the correct place, it doesn’t open the correct tab.

    I have been seeking a solution to this for quite a while and tried plugins as well. Any help would be much appreciated.

    in reply to: Links to Tabbed Areas #375257

    Josue, thanks, but that had no impact. Also it looks like you are merely changing an amount, which would not be a correct amount for all tabbed content even if it did have an impact. If I create a link to a tabbed area with a particular tab open, the page lifts up and shows the BOTTOM of the tabbed area box, not the top of it, that is my problem. If I put an anchor link WITHIN the tabbed content, even though I set it at the top of the content text area, it still takes the viewer to the bottom of it for some reason, trying to show the entire boxed area I guess.

    in reply to: blog shortcode for no images, no meta, no title #337696

    Josue, I used the Custom Content Shortcode Plugin another person on your forum recommended for this and it worked well. It would be awesome if there were more choices when using the blog shortcode provided in the theme; you have 3 options and all use photos, for example; you do not give options to turn off title, excerpt, comments, author. So in the end there are just very few options and it seems it would be fairly easy to provide those?

    In any case the plugin works and afforded me far more flexibility, so I’m set.

    To see what I was attempting to accomplish you can click on any of the tabs on this page:
    http://realfreshclient.com/banetti/portfolio/energy-ep/
    (use “gizm0” to get past privacy login screen).

    The text in each of those tabs is being pulled in from posts. Each case study will be used in several places on the site, so I wanted to use post content within them.

    This also gives me an opportunity to create versions of this page with each tab open on load, so that i can send people to specific case studies in the menu; I tried to accomplish that using an anchor/jump link, but it jumped to the bottom of the tabbed area rather than the top. So to make a page for each company, I’m going to have to make an actual page for each company; there’s no way to indicate which tab should be open for different instances.

    Thanks for checking in with me on this. I don’t need any more assistance with it but wanted others to know how I solved it.

    in reply to: Change height size in color section #336306
    This reply has been marked as private.
    in reply to: Change height size in color section #336299
    in reply to: Change height size in color section #336277

    I am trying to use these instructions and having no success; can you tell me whether they still work with the new version of enfold? My page is at http://realfreshclient.com/banetti/portfolio-2/life-sciences-2/ (use gizm0 to see it), and I’m trying to get a small band of red at the top.

    I assigned red_section in the ID field of the color section and placed

    #red_section{
    height: 80px !important;
    }
    but I don’t see the ID being called in inspector…unsure what I may be doing wrong.

    in reply to: Enfold Feature Requests #227263

    A slider that pulls from posts, particularly of a certain category, and does so automatically. I’m finding both kinds of sliders in Enfold have to be set up slide by slide, and I’d like one that pulls the headlines from my posts automatically, or the posts themselves…a real “content” slider that actually goes and GETS content, instead of one that just allows me to put my own in every single time i want to add to or change it. Thanks!

    in reply to: Enlarge Body Type #188596

    Figured it out:

    body { font-size: 15px!important; }

    it does work. Sorry!

    in reply to: Enfold Feature Requests #173243

    A way to copy and move pagebuilder sections/elements between pages. Maybe this exists and i just haven’t found it yet.

    in reply to: Enfold Feature Requests #170613

    Please, in future updates, make the buttons all the nice flat ones, not the old school dimensional ones. Right now you have two different kinds in the theme and the old ones look really outdated and wrong with this gorgeous theme.

    in reply to: Enfold Feature Requests #170612

    When using the blog post content element on a page, I’d love to be able to turn off the date, number of comments, etc. line under the title. I don’t want to do this in all instances, I still want those there for blog posts, but sometimes I want to be able to use posts to create a page of, say, teacher bios at a school, or whatnot, and that info. is just weird in those instances. I’m sure there’s a CSS way to turn it off on particular pages…but it would be nice to have SOME blog style we can choose where they are already off. Thanks for a great theme!

    in reply to: Enfold Feature Requests #161841

    I’d like your buttons to all look flat, none of that old-fashioned gradient tints on them anymore. Right now things just don’t match with one another when using contact submit button, etc.

    I’d like the social icons to appear UNDER the team member, rather than only appearing on hover. Or at least the option to do that. I just don’t think many people realize they can find that information that way, it’s poor UX.

    I’d like the layer slider layers to be nameable, instead of being called “layer 3, layer 4, etc,” so I can stop hunting for stuff.

    GREAT theme, best you’ve ever done, best anyone has, probably.

    in reply to: IE8: header logo size issue #161835

    Had the same issue, found I had to reduce the logo to 90px tall to stop it from disappearing under the content area of the page in IE 8. It also does not “reduce” when responsiveness happens, but it’s liveable. The later IE versions all seemed to work fine.

    in reply to: List of shortcodes #118438

    The shortcode generator doesn’t work on my replete site, as well. From what I’ve read on the forum this may have something to do with my host (currently hostgator) and I need to take it up with them. Hardly worth the time just to add a few shortcodes. I’ll got to documentation and hope you have them there, but honestly…a list of all shortcodes would be a nice thing to have. Thanks.

Viewing 22 posts - 31 through 52 (of 52 total)