Forum Replies Created
-
AuthorPosts
-
You’re currently running the latest version of Enfold, 3.5.4.
Best regards,
JosueYou’re welcome, glad to help.
Regards,
Josue1. Won’t remove anything, it will only affect new uploads.
2. Yes, the upload folder would be/wp-content/uploads/
Best regards,
JosueHey!
Try adding this code to the Quick CSS:
.av-magazine-time{ display: none; } ol{ list-style-type: decimal; }
Regarding the blog formatting, try adding this to theme / child theme functions.php:
add_filter('avf_postslider_title', function($title, $entry) { $title .= " <div class='post-slider-date'>".get_the_date('d-m-y', $entry->ID)."</div> "; return $title; },10,2);
Cheers!
JosueHey grwebs,
1. Both portfolio items are showing although only one of them has an featured image set.
2. Custom fonts can be added via custom CSS, we can help you with this if you hand us the font-file.
3. The HTTP error is most likely related to your server capability, the theme adds multiple image sizes so each time you upload a new image it gets resized to these, one thing you can do is disable some of the image sizes, you can do that by adding this code to theme / child theme functions.php:
function ava_image_sizes() { remove_image_size(‘masonry’); remove_image_size(‘magazine’); remove_image_size(‘widget’); remove_image_size(‘featured’); remove_image_size(‘featured_large’); remove_image_size(‘extra_large’); remove_image_size(‘portfolio_small’); remove_image_size(‘gallery’); remove_image_size(‘entry_with_sidebar’); remove_image_size(‘entry_without_sidebar’); remove_image_size(‘square’); } add_action( ‘after_setup_theme’, ‘ava_image_sizes’, 11 );
Also, i’d strongly suggest you using a child theme as most of the fixes/requests would require editing files, you can use the following plugin to make the transition:
http://wordpress.org/plugins/child-theme-configurator/Best regards,
JosueHey rasivert,
Check it now, there were some residual code in that Post (i believe from Facebook) that was affecting the markup of the Page.
Best regards,
JosueNo, i’m afraid no, iconfont weight can not be modified by CSS.
May 9, 2016 at 10:09 am in reply to: Testimonial element cuts off text on smartphones when assigning it fixed height #629096You are welcome, glad to help :)
Regards,
JosueHey!
Try adding this code to the Quick CSS:
a.flex_column { text-decoration: none !important; }
Cheers!
JosueHey!
Try adding this code to the Quick CSS:
#top .av_secondary_right .sub_menu { top: 7px; }
Cheers!
JosueMay 7, 2016 at 3:06 pm in reply to: Testimonial element cuts off text on smartphones when assigning it fixed height #628613Hey,
Use a bigger number, like:
@media only screen and (max-width: 480px) { .avia-slider-testimonials .avia-testimonial-content {min-height: 320px;} }
Best regards,
JosueHey,
I’d suggest looking for more specialized options like TablePress (it is compatible with the theme and has an option to add a new row at the start of the table).
Best regards,
JosueHey Ricarda,
1: Where / how can i define the number of columns i want my posts to be in in a category?
In /archive.php look for this line:'columns' => 3,
2: Why are there so many options regarding the blogmeta – but nothing changes of you change the settings?
Blogmeta settings change the single view only, if you want to change the index view you’d need to use CSS, please post a link to your index/blog/archive and we’ll provide you with the code.3. The code you posted is used to show the category title as the title of the archive page, the numbers (10,2) are parameters from the WordPress hooks functionality (10 is priority and 2 number of arguments passed).
Best regards,
JosueTry with this:
#top .social_bookmarks li a{ height: 52px; } #top .social_bookmarks li a { font-size: 26px; }
You’re welcome, glad to hear it works.
Cheers!
JosueMay 7, 2016 at 2:11 pm in reply to: Move category from before post title to after post title at main blog page #628602You can do that by duplicating:
/single.php /includes/loop-index.php
To your child theme directory.
You are welcome, glad to help :)
Regards,
JosueHi,
It’s down below, if you don’t see the it make sure it is enabled in Screen Options (top right).
Best regards,
JosueHi,
Try with this:
#top .social_bookmarks li.social_bookmarks_ResearchGate a { font-size: 28px; }
Best regards,
JosueYou’re missing a
}
@media only screen and (max-width: 767px) { #text-5 { display: none; } }
See my previous message regarding color.
For the titles, they come from the code in functions.php:
$icons['Ai Research'] = 'ai_research'; $icons['Ai GoogleScholar'] = 'ai_googlescholar'; $icons['Ai Academia'] = 'ai_academia';
Although you can simply change the “icon code” (
ai_research
,ai_academia
, etc) there, it may get messy because that will also be the class assigned to the HTML element (CSS classes can not have spaces), alternatively you could do the following:$icons['Ai Research'] = 'ResearchGate'; $icons['Ai GoogleScholar'] = 'GoogleScholar'; $icons['Ai Academia'] = 'Academia';
Once you done that you’d need to re-set the Social Icons in Theme Options and change the CSS codes:
.social_bookmarks_ai_research
becomes.social_bookmarks_ResearchGate
and so on.Makes sense?
Also, to change the hover background color use the following:
#top #wrap_all .social_bookmarks_ai_research:hover a{ background: red; color: white; } #top #wrap_all .social_bookmarks_ai_googlescholar:hover a{ background: green; color: white; } #top #wrap_all .social_bookmarks_ai_academia:hover a{ background: blue; color: white; }
Done, the 3 new custom icons has been added:
http://sabinedoebel.com/wp-admin/admin.php?page=avia#goto_socialTo add/remove custom icons you’d just have to modify this function i placed in your child theme functions.php (follow the same pattern):
function avia_add_custom_social_icon($icons) { $icons['Ai Research'] = 'ai_research'; $icons['Ai GoogleScholar'] = 'ai_googlescholar'; $icons['Ai Academia'] = 'ai_academia'; return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
Additionally, in child style.css:
#top .social_bookmarks_ai_research a:before { content: "\e902"; font-family: "Academicons"; } #top .social_bookmarks_ai_googlescholar a:before { content: "\e900"; font-family: "Academicons"; } #top .social_bookmarks_ai_academia a:before{ content: "\e910"; font-family: "Academicons"; }
To get the icon codes (e910, e900, etc):
http://sabinedoebel.com/wp-content/themes/enfold-child/academicons.css?ver=3.5.3.1461188191Regards,
JosueHey!
Sorry for my late reply, please check your site. I’ve changed the icon of the gplus social link (it’s set in style.css, no need to edit functions.php). One issue though (unless you plan to only use gplus) is that Academicons only have these glyphs available – http://jpswalsh.github.io/academicons/
Cheers!
JosueA way to hook into FWD elements will be added in the next patch, it will work like this:
function custom_fwd_elements($arr) { $arr[] = 'custom_shortcode' return $arr; } add_filter('avf_fwd_elements', 'custom_fwd_elements', 10, 1);
May 5, 2016 at 12:55 pm in reply to: Move category from before post title to after post title at main blog page #627771You are welcome, just one note, this is a CSS fix, meaning that if a title is 2 or 3 lines long it may not look good, in that case you’d need to edit the theme files (/includes/loop-index.php) – http://screencast.com/t/wQ6psMyw
Regards,
JosueMay 5, 2016 at 12:52 pm in reply to: Columns side by side instead of on top of each other in Mobile #627767Hi,
I made sure all unwrapped elements were wrapped with a Color Section.
Best regards,
JosuePass me the API key you generated via private reply.
Something like this:
@media only screen and (max-width: 767px) { #text-5 { display: none; } }
-
AuthorPosts