Forum Replies Created
-
AuthorPosts
-
October 22, 2019 at 11:35 pm in reply to: New featured image in portfolio grid is deeper than the older ones #1150333
Sure, the last one here is a new one. If I use exactly the same size fatter image as before it comes out deeper, if I substitute a preexisting one from another portfolio post as a featured image it lines up. Has something to do with how the thumbnails are be generated by the theme and/or WP I imagine?
https://www.brookwood-construction.com/wp-content/uploads/2019/10/problem.jpg
October 21, 2019 at 6:58 pm in reply to: New featured image in portfolio grid is deeper than the older ones #1149938Hoping you’ve seen this, following up, client wants this done today. Thanks, Tony
hi Rickard,
Yeah I already have that css loaded, but see the screenshot here. The logos are outlined and change to black:
http://crystalgoddess.com/wp-content/uploads/2019/09/Screen-Shot-2019-09-28-at-8.18.23-PM.png
Thanks,
Tony
Hey Victoria,
Yeah like here:
Notice the playbill image has no border, not sure which way it will go since the client previously had borders on some images and not others when they didn’t have captions, but…
If I want to match the border to the image above which I fixed with your help, would there be a way to that on individual images and/or all images?
Thanks so much
Cool. What I wanted to do was fill the area with white, I just need the right target.
div .wp-caption {
background-color: #ffffff; !important;
}
This worked fine, thanks.Is there a way to easily target images without a caption to put a white border around them as well? Perhaps a css class that can applied per image? My attempts failed there as well I am embarassed to admit.
Thanks so much.
Ironically, we decided to set the portfolio grid to load randomly as it’s a selection of authors and as the site grows we don’t want certain authors to always be on page 2 of the grid. However, I believe I had the same issue on another Enfold installation, and I’ll check there and follow up. Thanks for the help.
April 14, 2019 at 11:34 pm in reply to: masonry gallery failing to show second or third page after WP went to 5.1 #1090774Awesome!
April 14, 2019 at 11:33 pm in reply to: How to set up single portfolio: 2/3 slider like in demo panel on your site #1090773Hi Victoria,
Thanks for following up. Ok, the word wrap within the demo you have would work because the toggle is in the accordion. Good to know I wasn’t even aware of that CSS, glad to learn something new. However…in my instance the issue is with the titles (long brand names sometimes 12 to 14 characters long.
The theme seems to pull the title in as an h2 in that particular layout as the title of the right panel. So using the same code you provide with the h2 tag does break those longer brand names. Not a prefect solution but better than having the right side of the word crop off. I think it would be very rare anyone would have the browser width to a place where it would break anyway as I set the h2 tag kind of small in advanced styling, so…since I believe i not reinventing the wheel, good enough. :)
Thanks
April 13, 2019 at 6:51 am in reply to: masonry gallery failing to show second or third page after WP went to 5.1 #1090288Hey Rickard,
That worked like a charm. I forgot to ask I realized if that should be in the child theme as it would break when the theme updates?
April 13, 2019 at 6:49 am in reply to: How to set up single portfolio: 2/3 slider like in demo panel on your site #1090286Hi,
Thanks for your response. One question though, I notice even in your demo at a certain specific width the url you have there crops a bit prior to when the theme switches to the mobile view. I’m having an issue with long single word headlines doing the same thing and having to be tiny to not crop at a narrower browser width. Granted not a width most people would be looking at, but nonetheless will be a problem with this client.
your demo: https://kriesi.at/themes/enfold/portfolio/portfolio-ajax/
So follow up question is it possible to change the widths the the text field to the right is a bit wider? I’m assuming the left is 2/3 and the right 1/3 by default.
Or maybe there’s a way to set Enfold to switch to the mobile view at a wider width and avoid the issue in that manner? Not talking the just menu here I see a setting for that, but rather the whole layout.
https://nycartdirector.com/janicemedia/wp-content/uploads/2019/04/cropping.jpg
The url above shows the cropping issue on your demo. This is more pronounced on the layout I’m trying to put together because of oddly long single word headers (brand names).
Thanks,
Tony
March 31, 2019 at 5:28 am in reply to: Load right grid row on mobile phone like freelancer demo but over left grid #1085003Rikard,
Yeah I thought of that right after I sent the ticket in, thanks pal.
Tony
March 8, 2019 at 12:33 am in reply to: masonry gallery failing to show second or third page after WP went to 5.1 #1076161https://gaylemartz.com/portfolio-item/i-dogs-in-bags/
Sorry forgot to give an example of exact page where the gallery if failing to go to page 2
December 15, 2018 at 2:49 am in reply to: Mobile menu over to the right and overlapping logo, and cart icon in odd positio #1045510Hi Victoria,
Actually it had no effect in either place. I’ve attached a screenshot link to illustrate the menu icon – logo overlap. If the logo was centered or full width and the menu icon and cart where below it that would be ideal.
Thanks
https://nycartdirector.com/gaylemartz/wp-content/uploads/2018/12/temp.png
October 25, 2018 at 9:30 pm in reply to: change color of field behind captions on masonry gallery #1026564perfect, thanks so much.
October 9, 2018 at 5:21 pm in reply to: Previous and next arrows on portfolio items: How to limit these within category #1019560Hey guys, sorry I misread that message from Guenni when I first read it, Doh. Works like a charm. Thanks so much.
October 6, 2018 at 5:42 pm in reply to: Previous and next arrows on portfolio items: How to limit these within category #1018536Add to the main php file?
Adding just to that to the child theme’s php file causes a fatal error:
Fatal error: Cannot redeclare enfold_customization_postnav() (previously declared in /home/nycartdi/public_html/brookwood/wp-content/themes/enfold-child/functions.php:9) in /home/nycartdi/public_html/brookwood/wp-content/themes/enfold-child/functions.php on line 34
This code is already added to the child theme’s functions php file to tweak an issue with the portfolios staying within the same taxonomy:
add_filter( ‘avia_post_nav_entries’, ‘enfold_customization_postnav’, 10, 2);
function enfold_customization_postnav($entries, $settings)
{
if($settings[‘type’] == ‘portfolio’)
{
$settings[‘same_category’] = true;$entries[‘prev’] = get_next_post($settings[‘same_category’], $settings[‘excluded_terms’], $settings[‘taxonomy’]);
$entries[‘next’] = get_previous_post($settings[‘same_category’], $settings[‘excluded_terms’], $settings[‘taxonomy’]);
}return $entries;
}Thanks
Tony
October 6, 2018 at 5:22 pm in reply to: Previous and next arrows on portfolio items: How to limit these within category #1018531That’s when you click down into the specific portfolio items of course, I gave you the top level pages as links where these portfolios are posted.
Thanks again.
October 6, 2018 at 5:20 pm in reply to: Previous and next arrows on portfolio items: How to limit these within category #1018530Hey Nikko,
Thanks that worked like a charm. I notice though on b both of the pages that use the portfolio function:
That the navigational arrows seems to work in reverse. Meaning the forward arrow goes to the previous entry and vice versa. How do I make them function properly? I must be missing something
Thanks
Tony
October 4, 2018 at 5:18 pm in reply to: Previous and next arrows on portfolio items: How to limit these within category #1017971log in below in private area
October 3, 2018 at 6:36 pm in reply to: Previous and next arrows on portfolio items: How to limit these within category #1017581This reply has been marked as private.August 19, 2018 at 5:54 am in reply to: Blog shows only read more links regardless of settings #998851Sorry about that, yes ok I see the difference now, Thanks so much.
August 13, 2018 at 10:19 pm in reply to: Fatal error: Could not extract a stage height from the CSS. Traced height: Opx. #996893Hi Dude,
reset the password, how odd it didn’t work, provided in private area.
It definitely a conflict between the nextgen plugin and enfold, effecting both an iPhone and iPad I’ve tested the site on. I’ve seen in your forums this has come up before and several solutions, but they are outdated and don’t seem to work anymore. Is there some css or php hack to set the stage height to get around this I wonder?
The error is:
Fatal error: Could not extract a stage height from the CSS. Traced height: Opx.
Thanks
June 23, 2016 at 10:44 pm in reply to: I need to have portfolio items open the portfolio pages, but not in a new window #652767I remade the child theme and it’s working now, so never mind and thanks. Odd though that it the theme handles it as opening in the same window be default on another installation with the same exact settings and all plugins off. I’m coding it as such there as well just to be sure it keeps working that way obviously.
Thanks
June 23, 2016 at 3:47 am in reply to: I need to have portfolio items open the portfolio pages, but not in a new window #652431Andy/Yigit
Ok so I enabled the custom field by altering the functions php file in the child theme.
But adding:
function custom_class_link(){
?>
<script>
jQuery(window).load(function(){
jQuery(‘.your-custom-class a’).removeAttr(‘target’);
});
</script>
<?php
}
add_action(‘wp_footer’, ‘custom_class_link’);adding in my class ‘.changeitup’ for ‘.your-custom-class’ causes this error:
Parse error: syntax error, unexpected ‘?’ in /home/kinapharma14/public_html/wp-content/themes/enfold-child/functions.php on line 6
Is the code correct?
Thanks,
Tony
June 21, 2016 at 4:12 am in reply to: I need to have portfolio items open the portfolio pages, but not in a new window #651215Andy,
Maybe you’re no following what I said, with no modification of the functions .php file the portfolio does open it’s portfolio pages into the same window on http://kofinsiahpoku.com/
On http://kinagroupltd.com/ with the same exact settings it pops open a new window.
What I want to know is why. Either it can work either way without changing code, or somethings wrong with the one where it does what I want it to stay in the same window.
Is there some sort of choice in the settings I’m missing that makes it act differently from one site to the other? That’s of concern to me.
Thanks.
June 18, 2016 at 6:12 am in reply to: I need to have portfolio items open the portfolio pages, but not in a new window #650090Yigit,
Well here’s the thing we just put up 4 sites for this client, with 4 new purchases of the theme, not bad huh? Anyway, we need the portfolio links on the home page of each to open in the same window. We have identical settings on two sites but they are behaving differently.
http://kofinsiahpoku.com/ stays in same window
http://kinagroupltd.com/ pops new window
I need them to stay in the same window always.
Thanks
January 7, 2015 at 7:21 pm in reply to: Alt version of layer slider slideshow for slower 3g mobile devices #376339Thank you Elliot I see what I was doing wrong now, you saved me a lot of time and educated me I am greatly in your debt, pal. I’ve decided to redo my personal portfolio web site with the theme as well so you just made another sale. :) You guys are the best.
Tony
January 5, 2015 at 8:00 pm in reply to: Alt version of layer slider slideshow for slower 3g mobile devices #375282Hey Andy,
That works great but it still has a small issue I was trying to get rid of, if you make the desktop version very narrow in the browser both sliders appear. Not that many people would ever do this, but this client does that to simulate the mobile version on his desktop as he has no smart phone himself. That’s the part I could never figure out.
Tony
January 2, 2015 at 10:34 pm in reply to: Alt version of layer slider slideshow for slower 3g mobile devices #374276This reply has been marked as private.December 29, 2014 at 5:16 pm in reply to: Alt version of layer slider slideshow for slower 3g mobile devices #372654Hey Yigit,
At work at the moment I’ll fiddle with this soon, however. That code will remove the slider on the mobile device how would I then implement the smaller low res version of the same there? As I recall the theme uses a module to place the slider. Can the slider be placed with a shortcode somehow in a codeblock?
Thanks,
Tony -
AuthorPosts