Forum Replies Created
-
AuthorPosts
-
March 4, 2019 at 7:36 pm in reply to: Category/Tag Archive: show excerpt but not read-more-link #1074491
Here is the code of my complete archive.php (private area)
None of this worked:
'contents' => 'only_excerpt', 'contents' => 'title', 'contents' => 'title_read_more',
and please note:
I use this function filter (https://kriesi.at/documentation/enfold/blog-post/#toggle-id-10):add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); function avia_change_category_blog_layout($layout, $context){ if($context == 'archive') $layout = 'single-big'; 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 = 'single-big'; return $layout; }
March 4, 2019 at 7:19 pm in reply to: Masonry blog: show no separator AFTER the category term #1074483sorry, the snippet above is the wrong one, I do not use the filter, I use @ismael modification here:
https://kriesi.at/support/topic/masonry-blog-show-category-name-without-filter-but-directly-in-theme-file/#post-1036902/* show category name in ALB element "blog masonry" */ $categories = get_the_category($entry['ID']); $separator = ' | '; $count = count($categories); $i = 0; $output_cat = "<div class='masonry-categories'>"; if ( ! empty( $categories ) ) { foreach( $categories as $category ) { if($i++ === $count) { $separator = ''; } $output_cat .= '<span alt="' . esc_attr( sprintf( __( 'View all posts in %s', 'textdomain' ), $category->name ) ) . '">' . esc_html( $category->name ) . '</span>' . $separator; } } $output_cat .= "</div>"; $cat = trim( $output_cat, $separator ); $text_before .= $cat;
WordPress settings -> permalinks, on the very bottom of this page
I do not use any token – I do everything fully manual via FTP.
I have marked the notification in my ENVATO account for theme updates.okay, thanks, but how should I know then, when it is an update???
The forum uses
– https://wordpress.org/plugins/bbpress/
– https://de.wordpress.org/plugins/bbpress-private-replies/
as far as I can see.
The “profile widget” seems to be a custom login form (avia-loginform).I have a similar problem that I probably could solve for my own: could you please update your help link, it seems to be a false one – there is no content concerning to move from a local installation to a live server. Thanks.
Have you tried to disable all plugins? I run WP 5.0.3 + ENFOLD 4.5.3 and don’t have this issue.
“Warning: Cannot modify header information” is mostly a plugin conflict
OR
there is a “messy” update. Try to download the ENFOLD files again and update via FTP with those completely new files.See here:
January 18, 2019 at 12:09 pm in reply to: Photos taking up a huge amount of space on my site storage – anything I can do? #1055416when you use the “Simple Image Sizes Plugin” you do not need to install the “Regenerate Thumbnails plugin”, too, because the Simple Image Size plugin has the regenerate thumbnail functionality. See at the very bottom of the page, where you change your media sizes.
January 17, 2019 at 12:47 pm in reply to: Photos taking up a huge amount of space on my site storage – anything I can do? #1054978https://kriesi.at/support/topic/photos-taking-up-a-huge-amount-of-space-on-my-site-storage-anything-i-can-do/#post-1052056
@kahil as mentioned above the ACF elements of your AddOns cannot be made with the free Advanced Custom Fields plugin? I won’t buy ACF Pro because I do not need that.
is it possible to add an element preview to all of your elements like the originals from ENFOLD?
Following elements have no preview:Page/Post Title
Modern Featured Image
Key Feature List
Tag List
Category List
ShortlinkSadly the ACF elements (like ACF testimonals) work only wit ACF PRO.
- This reply was modified 5 years, 10 months ago by BeeCee.
okay, great, thanks, just purchased it. Your installation instructions on your site tell about to upload the js and the shortcodes folder, but the purchased download came only with a shortcodes folder, no js folder?
Thank you, the elements are looking great, do you have a live view of them?
And another question: are updates included, do you add more elements in the future?
you can inspect the CSS and the images in the ENFOLD APP demo, there is a similar effect with PNG and negative margin in CSS:
January 9, 2019 at 7:34 pm in reply to: Photos taking up a huge amount of space on my site storage – anything I can do? #1052056Use the plugin https://de.wordpress.org/plugins/simple-image-sizes/ and set in the plugin’s settings (Settings -> Media) each image format, that you do not use or want, the size to height 0 and width 0; that means, that this image format will not be created for future uploads. Works only for new uploads, not for existing images.
For example at my end I don’t need the shop image formats and set them to 0 / 0 – this image sizes aren’t created:
http://imgbox.com/JbnLnm3aSimple and effective.
The benefit of this plugin is, that you can also change existing image sizes to your desire.
it is on the first page of ENFOLD’s theme settings and then at the very bottom:
https://imgbox.com/rr0DhTjKWhat demo have you imported?
December 8, 2018 at 6:52 pm in reply to: Major problems with new WordPress 5.0 and Enfold 4.5.1 updates! #1042519WordPress for its own has over 1500 issues. It is nothing new for many, many years now, that it is not a clever idea, to upgrade to a major release! YOAST and others companies have warned for weeks to upgrade to WP 5.0, instead waiting for 5.0.1 in probably January!
Concerning ENFOLD, I agree Guenni007, his solution works fine so far.
@Hilde da wo du es her hast:Themeforest -> dein Account -> Downloads, dann downloaden und auf deinen FTP uploaden
My site is still in the development. So here is my scenario:
Footer Desktop View:
4 columns with widget A, B, C, DFooter Mobile View:
2 columns with widget E, FBut generally said, all I would like to know what the best solution is, to have 2 different footer for desktop and mobile view?
November 23, 2018 at 10:56 pm in reply to: Masonry blog: show category name without filter, but directly in theme file? #1037137It works fine, thank you very, very much, Ismael. I appreciate your time and efforts very much!
November 22, 2018 at 6:09 pm in reply to: Masonry blog: show category name without filter, but directly in theme file? #1036661thank you, Ismael, appreciate your help, but sorry to bother you, but could you please give me the solution for editing the theme file directly please?
The reason is, I cannot “tweak” that filter thing from you with my bad PHP knowledge for further adaptions, but I guess I would more success for further editing things in that file, when I have your solution for the theme file directly. Thanks.
Please refer to my first post:
Your suggested plugin is not what I’d like to achieve.
And I already have a tutorial and code snippets – see above, but not sure,– how to put it into an ENFOLD “function” and
– where to place the HTML part exactly in the comments.phpI do not use the ALB for posts.
November 19, 2018 at 6:41 pm in reply to: Masonry blog: show category name without filter, but directly in theme file? #1035261I work within the theme files, it is easier for me and my bad PHP knowledge, and it is easier for me with further tweaks of this styling – that’s my way to work.
So I placed your snippet as asked into av-helper-masonry.php around line 539 in this context:
$this->loop[$key]['text_before'] = ""; $this->loop[$key]['text_after'] = ""; $this->loop[$key]['ID'] = $id = $entry->ID; $this->loop[$key]['post_type'] = $entry->post_type; $this->loop[$key]['thumb_ID'] = get_post_thumbnail_id($id); $post_categories = wp_get_post_categories( 4 ); $categories = get_the_category($post_categories[0]); $this->loop[$key]['the_title'] = get_the_title($id); $this->loop[$key]['url'] = get_permalink($id); $this->loop[$key]['date'] = "<span class='av-masonry-date meta-color updated'>".get_the_time($date_format, $id)."</span>"; $this->loop[$key]['author'] = "<span class='av-masonry-author meta-color vcard author'><span class='fn'>". __('by','avia_framework') .' '. $author."</span></span>"; $this->loop[$key]['class'] = get_post_class("av-masonry-entry isotope-item", $id); $this->loop[$key]['content'] = strip_tags( $entry->post_excerpt ); $this->loop[$key]['description'] = !empty($entry->post_content) ? $entry->post_content : $entry->post_excerpt;
and this output no category name above the title:
Please test it at your demo installation, my site is not yet online. Thanks.
November 15, 2018 at 5:37 pm in reply to: How to add woff font file? Upload causes SVG error. #1034050S O L V E D
Okay, my fault: I tried to upload it to the wrong font manager, the symbol font manager.
When uploading it to the other font manager for “real” fonts below, it works perfectly.
So you can close this topic, thanks.It’s all Greek to me – Should we add all the plugins we are currently using to this list? And where is this “list”?
November 5, 2018 at 10:42 am in reply to: How to show a default featured image (posts & pages!) if there is none? #1029822okay, thank you, I guess I understand now … but what can I do so that this default/fallback featured image is also shown in the search results. I haven’t added anything to search files of ENFOLD (and I don’t know what and how)
October 31, 2018 at 10:46 pm in reply to: How to show a default featured image (posts & pages!) if there is none? #1028646I still haven’t made any changes to any file in ENFOLD.
I only tried this snippet in the my Code-Snippets-Plugin (which holds every snippet that normally goes to the function.php):add_filter('avf_loop_index_blog_meta', 'avf_loop_index_blog_meta_mod', 10, 1); function avf_loop_index_blog_meta_mod($output) { $link = get_permalink(); $fallback = strpos($output, 'iconfont'); if ($fallback <= 200) { $output = "<a href='{$link}' class='small-preview' title='Advanced Post'><img src='FALLBACK IMAGE URL HERE'/></a>"; } return $output; }
But probably that is not the right snippet or it is not complete, so that also at the search results page this default fallback image appears.
-
AuthorPosts