Forum Replies Created
-
AuthorPosts
-
February 16, 2017 at 11:27 pm in reply to: How to Hide Category Only on Blog Posts Grid Layout Content Element #748170
Perfect! And I will tuck that solution away for future situations where I need to limit a CSS change to one page or post. You guys are great. Thanks!
December 1, 2016 at 9:55 pm in reply to: Change Height of Background Color on Hover State for Main Menu Links #719403Perfect. Thank you!
November 16, 2016 at 5:53 pm in reply to: Change Height of Background Color on Hover State for Main Menu Links #713102My apologies, Rikard! Sure.
The solutions discussed here worked for me once I configured the domain as http://mywebsite.com/*
I also noticed that the Latitude/Longitude coordinates in the map are inverted in the Enfold Google Map media element. I entered Latitude/Longitude without looking at the labels. My map pin was placed in Antarctica ;)
Perhaps there’s a good reason to list the coordinates as Longitude/Latitude, but I’m thinking it might be helpful to present those fields with latitude first. It would have prevented some headache at least for me!
Many thanks to Kriesi and team for your work on this issue. Such is life when the API provider changes things on you.
August 10, 2016 at 5:48 pm in reply to: How do I apply a drop shadow to the menu, but only for the transparent header? #671011Actually, nevermind. It looks great with the shadow, but it looks acceptable without it. I’m just going to darken the image a bit to make sure the menu is legible. Thank you.
August 10, 2016 at 5:45 pm in reply to: How do I apply a drop shadow to the menu, but only for the transparent header? #671003I’m not sure I have enough CSS knowledge to execute what you’ve suggested. The logic makes sense to me, and it makes sense that I should be able to change the text shadow setting to none, but I think I need more help :( I’m looking through the rest of the forum to find clues and fixes to similar problems. If you have the ability to offer more specific assistance, that would be GREAT. Thank you.
August 8, 2016 at 3:06 pm in reply to: How do I apply a drop shadow to the menu, but only for the transparent header? #669844I was checking up on this thread and I realized you didn’t receive the credentials I sent. Sorry about that! I’m trying to send them again here.
Sure thing.
I had the same issue. Adding this code in functions.php (provided by AdamBlumFGE) worked for me:
add_filter( 'wp_image_editors', 'change_graphic_lib' ); function change_graphic_lib($array) { return array( 'WP_Image_Editor_GD', 'WP_Image_Editor_Imagick' ); }
I have a quick related question…what’s the best way to make those edits with a parent/child theme setup?
Themeforest released the update since I posted that. When I updated to Enfold 3.5.2, the problem was resolved. Thank you!
Thanks for that updated avia.js, Kriesi! I just applied it, and I noticed that the Google Maps media element doesn’t seem to display right. I wanted to let you know in case that was a problem you hadn’t already encountered.
Thank you for your support. I am a huge fan of your theme. I’ve licensed it about 3 dozen times.
- This reply was modified 8 years, 7 months ago by AJDesignCo.
Thank you for the update and for the notification. The issue is fixed for us now. Much appreciated!
Here’s the text from the debug panel.
- This reply was modified 8 years, 11 months ago by AJDesignCo. Reason: Use code tag to keep contact form shortcode from rendering
Thank you for the revision. It worked perfectly! And I have it added in the functions.php of my child theme, so future parent theme updates won’t disturb it. I appreciate the support!
Thanks for the quick reply Yigit!
I added that, but it’s not quite working. This is a screenshot of functions.php in my child theme Editor:
Editor screenshotThis is the page with the contact form that includes a datepicker:
http://wc.ajdesignco.com/dinner-reservations/The initial display of the datepicker is correct: MM / DD / YY
But when the user uses the datepicker to select a date like June 12, 2015, the value that is displayed after clicking the date is 12 / 06 / 2015 (and to most North American users, that is December 6, 2015).
Is there something else I need to do? If what I’m asking isn’t feasible, please let me know and I’ll handle it with a plugin.
Thank you!
That was just what I needed. Thank you!
This is a related question. What is the CSS for changing the background color of the preloading page?
Thank you very much!
Hi Rikard,
Thanks for taking a look sir! The only customization I’ve made involves using a child theme. But there’s really been no customization. I didn’t add a functions.php file to the child theme. There are no CSS customizations I’ve entered in the child theme CSS or the Quick CSS in the theme settings.
The Blog page is empty with the child theme. When I activate the parent theme (Enfold), the Blog page is still empty. But when I activate the WordPress 2015 theme, the posts show up on the Blog page.
I really appreciate your help. Enfold is BY FAR my favorite theme to work with. And your support is always great.
Thank you,
Andy- This reply was modified 9 years, 7 months ago by AJDesignCo. Reason: removed privacy so other users can see this reply
This reply has been marked as private.BTW, sorry about the double post.
Here is a link to a screenshot to the page I’ve set to display my posts:
Blog PageIndividual posts are fine. But the blog page isn’t working:
http://freshwatercoastfoundation.org/blog/This reply has been marked as private.Nevermind. I think I found the problem with formatting.php. I had some invalid menu items after deactivating a plugin.
But I still have a blank Posts page. I deleted the .htaccess file. I rebuilt the permalinks. I reinstalled the parent theme. I deleted and re-created the Blog page. Nothing has worked. What else can I do?
March 31, 2015 at 3:54 pm in reply to: White Border Showing Between Left Menu and Page Content #421240That’s what I needed. Thank you!
March 18, 2015 at 9:51 pm in reply to: How to set typography on Enfold after the effin' 4.0.1 WP update? #414002That is what I needed. Thank you!
March 18, 2015 at 12:56 am in reply to: How to set typography on Enfold after the effin' 4.0.1 WP update? #413316Thanks! I’m close. My child theme was one I made, and it didn’t have a functions.php already (all I used the child theme for was to preserve customizations to the CSS). I wasn’t sure how to create a custom functions.php for my child theme, and I wasn’t sure of the specific text to include for the Google fonts I wanted to use. I found functions.php is pretty basic…it just starts with an opening PHP argument. See below. And I used Inspect Element for the Google fonts I wanted to use to find out how they are referenced. This is what my functions.php looks like:
<?php /* custom PHP functions to allow all three weights of Oswald font in Enfold child theme */ add_filter( 'avf_google_heading_font', 'avia_add_heading_font'); function avia_add_heading_font($fonts) { $fonts['Oswald 300'] = 'Oswald:300'; $fonts['Oswald 400'] = 'Oswald:400'; $fonts['Oswald 700'] = 'Oswald:700'; return $fonts; } add_filter( 'avf_google_content_font', 'avia_add_content_font'); function avia_add_content_font($fonts) { $fonts['Oswald 300'] = 'Oswald:300'; $fonts['Oswald 400'] = 'Oswald:400'; $fonts['Oswald 700'] = 'Oswald:700'; return $fonts; }
So now I see Oswald 300, Oswald 400, and Oswald 700 in the list of available fonts. But I’m having trouble controlling where the weights show up. I added some custom settings in Advanced Style Options to make H2 display the 300 weight and H1 display the 700 weight, but it’s not working for me.
What am I missing? Do I need any more custom CSS?
March 12, 2015 at 4:27 am in reply to: How to set typography on Enfold after the effin' 4.0.1 WP update? #410274Can you please provide the code for altering the look of Oswald from the default (can’t tell for sure but it looks like the 700 weight) to a different weight (300 or 400)? I would also love to be able to apply that weight inline. I have a piece of text on a page that I would like to set to the 300 weight without affecting any other instances of that style. Here’s what I think it should be:
<h2 style="text-align: center; font-weight: 300;">Who likes business-friendly graphic design?</h2>
But it doesn’t appear to be working for me. Are all weights of Oswald available in Enfold?
Thanks so much.
March 6, 2015 at 10:06 pm in reply to: "Show Sharing Buttons" checkbox having no effect on Posts and Portfolio items. #407315I think I figured it out. The social sharing utility showing up on the blog post by default isn’t controlled by the “Social Sharing” feature. Once I set up the Social Sharing channels in Settings > Social Sharing, I was able to add some social sharing buttons to the Portfolio items.
I have a follow up question. Is there a simple way to get the same social sharing buttons that display on blog posts by default to show up on Portfolio Items?
Thanks!
-
AuthorPosts