Forum Replies Created
-
AuthorPosts
-
June 1, 2020 at 1:23 pm in reply to: How to change the product default "Sort Order" to date? #1218420
IGNORE this, sorry. I fixed the issue.
- This reply was modified 4 years, 5 months ago by fusion01. Reason: FIXED
Ok really simple, pasted within caption:
<div class=”title-wrap”><h1>Content here</h1></div>
Strips the <p> tag and all is well. THanks :)
January 22, 2020 at 1:40 pm in reply to: Adjusting JPEG compression via functions.php file (works only in theme file!) #1177180Hi there, the code you provided was copied and pasted verbatim and caused a fatal error when utilised within the functions.php file within the child theme folder. I’m aware of Enfold setting a 100 value, thanks.
January 22, 2020 at 1:07 pm in reply to: Adjusting JPEG compression via functions.php file (works only in theme file!) #1177169Hi Ismael, the error I had previously posted: “There has been a critical error on your website. Please check your site admin email inbox for instructions.” Guenni007 must have pasted code with syntax error(s), I’m no code boffin though to comment further. But thanks! Your code in last post works perfectly, I can see that 50 value applied! You’re the man, thanks again!
January 21, 2020 at 9:31 pm in reply to: Adjusting JPEG compression via functions.php file (works only in theme file!) #1176939I did. Don’t build sites on my mobile phone.
January 21, 2020 at 9:48 am in reply to: Adjusting JPEG compression via functions.php file (works only in theme file!) #1176621Now that was fun! Upon adding to the child theme’s functions.php verbatim: “There has been a critical error on your website. Please check your site admin email inbox for instructions.”
- This reply was modified 4 years, 10 months ago by fusion01.
January 20, 2020 at 4:57 pm in reply to: Adjusting JPEG compression via functions.php file (works only in theme file!) #1176351Ok I see you mentioning the theme overriding my edit. How would one override what the theme has then done? I’d like something in my child theme. Possible?
January 20, 2020 at 4:55 pm in reply to: Adjusting JPEG compression via functions.php file (works only in theme file!) #1176348Of course. Hence my issue. The custom value only works when incorporated into the theme’s functions file and is not applied when in the child functions file, the custom value is ignored within the latter.
Thanks, appreciated. I will ask the client and possibly go this route. Possible to mention the Javascript file that handles this action?
Hello I added it but it made no difference, charts animated fully by the time they were visible to the user on the page.
Anything else I can do?
Deleted
- This reply was modified 6 years, 6 months ago by fusion01.
Thanks. I need further assistance please. Is there a way to have sections scroll to the actual top of the page and not the top of the sticky header value?
I have made the header transparent so with content fixing below the header it looks plain wrong.
Link to follow in PM.
Thanks.I have added back my rule to fix padding at 99px (for some reason 100px left a 1px line which had to be closed):
.html_header_top.html_header_sticky #top #wrap_all #main { padding-top: 99px !important; }
Fixes the issue. For the transparent header I will have to create a custom rule for that specific page only.
BUT WHY is the question. The header itself is defining the 100px value correctly:
#top #header_main > .container {
height: 100px;
line-height: 100px;
}April 9, 2018 at 12:49 pm in reply to: WPML and Enfold – blog article appearing on home page #939142This reply has been marked as private.March 1, 2018 at 3:22 pm in reply to: 'Show excerpt in all magazine blog list' with "Read More" link #919685Works beautifully! Thank you!!! :)
February 27, 2018 at 3:44 pm in reply to: 'Show excerpt in all magazine blog list' with "Read More" link #918509There was never a clear explanation as to the fix on this issue. A moderator made a mod and didn’t post their work. Josue above shows a line of code one must search and replace, yet his change is exactly the same – character for character, I’ve compared, no difference! Can anyone please advise. I need the smaller magazine listings to show their excerpts.
November 2, 2017 at 6:16 pm in reply to: Custom gid layout not displaying across achive pages even with PHP code snippets #871791Really beyond annoying. Point I have been reiterating what seems to be a 1000 times is it had no effect. Hence my opening of a post. It made no difference. I was stuck with 3 columns.
Please close this thread. Thanks for an appalling attempt at attemping to solve my problems
October 30, 2017 at 7:38 am in reply to: Custom gid layout not displaying across achive pages even with PHP code snippets #870373Right at the beginning I changed that value of both files after viewing previous forum posts. The change of value made no difference. Three columns still remained. Caching? No plugins are activated that could cause this, I only activate after site development is complete. Last step. And yes forcing a reload is something I learnt to do in 2000 when I started web dev.
- This reply was modified 7 years ago by fusion01.
October 28, 2017 at 6:34 pm in reply to: Custom gid layout not displaying across achive pages even with PHP code snippets #869988Hi I assure you this was carried out on both files before this post. Changing value from 3 to 2 yet it made no difference. Hence my query. That was with the default grid setting. I’ll try again bore are this stage have little faith. Doing the same thing yet again and expecting a different outcome makes no sense to me.
October 26, 2017 at 12:47 pm in reply to: Custom gid layout not displaying across achive pages even with PHP code snippets #869180‘Not sure’ – reassuring! Thanks for the link, appreciated.
Can one change the DEFAULT GRID layout from 3 to 2 columns somehow?
October 25, 2017 at 10:56 am in reply to: Custom gid layout not displaying across achive pages even with PHP code snippets #868648I solved the problem finally. By adding the code snippets to the ENFOLD installation:
add_filter(‘avf_blog_style’,’avia_change_category_blog_layout’, 10, 2);
function avia_change_category_blog_layout($layout, $context){
if($context == ‘archive’) $layout = ‘blog-grid’;
return $layout;
}add_filter(‘avf_blog_style’,’avia_change_tag_blog_layout’, 10, 2);
function avia_change_tag_blog_layout($layout, $context){
if($context == ‘tag’) $layout = ‘blog-grid’;
return $layout;
}The code snippets in my child theme folder WERE IGNORED. WHY WAS THIS? It’s been a source of major frustration! And of course if I update the theme I will lose the custom mods.
Also is there a way to define the same image thumbnail sizing for images on the archive pages? They are being generated very large and resized in the browser (inefficient) > custom image size as within blog component is obviously being ignored. A fix?
October 25, 2017 at 9:10 am in reply to: Custom gid layout not displaying across achive pages even with PHP code snippets #868609UPDATE: If I DISABLE THE advanced layout editor option under blog layout and use the ie. ‘grid’ layout instead then the categories show correctly (with grid)! With a sidebar!
I have now just to change the default 3 column grid layout to 2 columns on the AUTO-GENERATED blog page – link below in private content. What php file do I edit?
I don’t like this solution as much as the other as I’m not able to control the image thumbnail size that is generated by the theme / WP so I’ve reverted to the custom layout for now and trying to find a solution.
October 25, 2017 at 8:08 am in reply to: Custom gid layout not displaying across achive pages even with PHP code snippets #868582Ignore.
October 25, 2017 at 8:06 am in reply to: Custom gid layout not displaying across achive pages even with PHP code snippets #868580HI, no theme files touched other than functions.php where I comment out all of the auto image creation (other than widget and square sizes). Still not working.
I removed these:
add_filter(‘avf_blog_style’,’avia_change_category_blog_layout’, 10, 2);
function avia_change_category_blog_layout($layout, $context){
if($context == ‘archive’) $layout = ‘blog-grid’;
return $layout;
}add_filter(‘avf_blog_style’,’avia_change_tag_blog_layout’, 10, 2);
function avia_change_tag_blog_layout($layout, $context){
if($context == ‘tag’) $layout = ‘blog-grid’;
return $layout;
}And added your snippet. No joy. Here is an example (link in private section below). You can clearly see it’s a default list.
Note I have previously had no problem with this issue on another site I developed with Enfold, but that was about 2 years ago (older version of Enfold).
October 23, 2017 at 4:36 pm in reply to: Custom gid layout not displaying across achive pages even with PHP code snippets #867689Thanks!
Ok sure. Thanks for investigating.
Thanks for looking into this. I copied and pasted from a text editor, then retyped ALL text content, then rebuilt the entire page twice!! Three separate steps altogether. I assure you I’ve run the gamut of what is possible. Note if you pop this paragraph into a text block ONLY on a new page it will exit the CMS back-end and load an error page of some sort on the front. Might help with bug testing.
The client had changed the offending paragraph so all loaded! I was not given notification of this. I have since pasted back this paragraph and again, the visual page builder WILL NOT load.
“Options range from inviting me into your school to audit your SBM function leaving you with a practical action plan, kickstarting tasks or projects or seeing them through to completion, or providing consultancy through difficult situations where an independent voice and advice can provide objectivity.”
Please review the ‘services’ page again. Thank you!
Thanks for looking into this.
Question: I ported the entire site over to my dev hosting location and had the same issue. How can the cache be responsible there? Possible?
I didn’t use a different browser, all was witihn FF (latest version) only, I should try Chrome it seems.Thanks so much.
-
AuthorPosts