Forum Replies Created
-
AuthorPosts
-
November 21, 2013 at 9:46 am in reply to: Selective remove portfolio link and add 'read more' link to blog page #191369
Hi!
1) I’m not sure – are you using a template (Advanced Layout Editor) or the standard blog page? If you use the template builder you can activate/deactivate the read more link on the blog element option screen. If you’re using the default blog page open up index.php and replace
$atts = array('type' => 'grid', 'items' => get_option('posts_per_page'), 'columns'=> 3, 'class'=>'avia-builder-el-no-sibling', 'paginate'=>'yes');
with
$atts = array('contents' => 'excerpt_read_more', 'type' => 'grid', 'items' => get_option('posts_per_page'), 'columns'=> 3, 'class'=>'avia-builder-el-no-sibling', 'paginate'=>'yes');
2) No, but you can install a redirect plugin like: http://wordpress.org/plugins/redirection/ which always redirects the user back to the portfolio page if he/she tries to access the single entry page. The advantage would be that search engines won’t index the empty portfolio item page too.
Cheers!
PeterHey!
I just tested the contact form with my “spam” mail address (ymail address: (Email address hidden if logged out) ) and it worked just fine. The mail was marked as spam mail – probably because I used some weird, random text to test the contact form. Please try to use another email address or check the spam folder – maybe gmail marks it as spam mail too.
Best regards,
Peter-
This reply was modified 11 years, 3 months ago by
Dude.
November 21, 2013 at 9:26 am in reply to: Compatibility of WPMUDev's Events+ plugin or Calendarize It! #191362Hi!
1) Insert following code at the bottom of funtions.php to remove the link
add_filter('avf_title_args', 'avia_remove_title_link', 10, 2); function avia_remove_title_link($args,$id) { $args['link'] = false; return $args; }
2) Use the code I posted here: https://gist.github.com/InoPlugs/7577333 but replace 2563 with your page id. I know it’s weird that the events page doesn’t show up like a normal page but here: http://tri.be/support/forums/topic/how-to-find-the-events-page-id-or-name/ you’ll get the answer.
Cheers!
PeterHey!
Yes, you need to insert the entire avia_title() function into the child theme functions file. Search for
if(!function_exists('avia_title'))
and copy the function code. Then insert it at the very bottom of the child theme functions.php file. Afterwards change the line I mentioned in my last post.
Best regards,
PeterHi!
Yes, I just need access to the theme option page to write some code into the quick css field.
Cheers!
PeterHey!
Yes, true will make sure that the prettyphoto script loads at the bottom of the page (footer section). I’m not sure why the code doesn’t work for you that’s why I tried to change different things to get it working. You can also set it back to false if “true” doesn’t work. As mentioned in my last post I changed the priority from 100 to 10 because the low priority of 100 may breaks the lightbox script. By default a priority of 10 is used for actions.
Cheers!
PeterHey Glyphism!
It’s not easily possible to change the animation effect and it’s beyond the scope of our support forum. You need to change some parts of the menu function in enfold/js/avia.js (search for function avia_responsive_menu() ) and probably some lines of the menu css code. I recommend to hire a freelancer if you’re not familiar with jquery/css. See: http://kriesi.at/contact/customization or http://www.microlancer.com/
Best regards,
PeterHey!
You can try to increaste the height of the header container. Use following code
.social_header #header_main .container, .social_header .main_menu ul:first-child > li a { height: 116px; line-height: 116px; }
and increase/decrease the px value if necessary.
If the code above still doesn’t work for you please create me an admin account and post the login data as private reply. You can also send it to: (Email address hidden if logged out) if you don’t want to post the login credentials in the forum). I can’t debug the css code with the debugbar of IETester and I need a direct access to the quick css field to check if my css code changes work or not.
Cheers!
PeterHi manzo!
Try following code instead
User-agent: *
Disallow: /wp-admin
Disallow: /wp-includesBest regards,
PeterNovember 20, 2013 at 4:36 pm in reply to: Compatibility of WPMUDev's Events+ plugin or Calendarize It! #190962Hey!
You can use the code I uploaded here: https://gist.github.com/InoPlugs/5442030 to change the title. Insert it at the very bottom of functions.php and instead of “Events List”, etc. insert your custom page title.
Cheers!
PeterHi!
Please try to flush the permalinks. Go to Settings > Permalinks and hit the “Save” button.
Cheers!
PeterHey Oli!
Yes, there’s just a minor issue with the meta tag output but it will be fixed with th next WPML update ( http://wpml.org/forums/topic/filter-for-head_langs-function/)
Cheers!
PeterThis reply has been marked as private.Hey silviouk!
No, the color section is only available as “template builder” element and you can’t insert it into the content by using a shortcode. The reason is that all fullwidth elements (LayerSlider, color section, masonry gallery, etc.) require a special template structure and you can’t create it by embedding a shortcode into a text content.
Regards,
PeterHi!
It works now. However note that you MUST use the same portfolio slug (Enfold > General Settings > “Portfolio: Enter a page slug that should be used for your portfolio single items” option) for all languages because the theme can’t register the translated permalinks on your server without breaking the existing permalinks. I had to comment out following line in /wp-content/themes/enfold/config-wpml/config.php to get the permalinks to work
add_action( 'init', 'avia_wpml_register_post_type_permalink', 20);
Normally the code will register new permalink rules for every language but in your case the server just stops to process these rules and the end result is that all permalinks won’t work. There seems to be some kind of limitation which doesn’t allow Enfold to register more permalink rules…
Best regards,
PeterHey reisp!
I’m not sure if you can change the crop position for each image individually but this plugin: http://wordpress.org/plugins/thumbnail-crop-position/ will help you to change it (at least for all images but maybe you can also select the images somehow). By default wordpress will center crop all images and you can’t change the crop position of the generated thumbnails manually.
Regards,
PeterHey!
Please try to insert following code into the quick css field to fix the issue
#top .alignleft a, #top .alignleft a:hover, #top .alignleft img, #top .alignright a, #top .alignright a:hover, #top .alignright img, #top .aligncenter a, #top .aligncenter a:hover, #top .aligncenter img{position: relative;}
Regards,
PeterHi!
I tagged the thread for Kriesi. I couldn’t find a js error or any obvious conflict which causes this issue and I’m not sure why it’s not working. The only suggestion I have is to re-install the theme and wordpress via ftp and to overwrite all existing files. Maybe a js file is corrupt and thus the media gallery doesn’t work properly.
Best regards,
PeterHey!
I think I found a solution with the chrome dev console – try to add following code into the quick css field
.content:hover, .sidebar:hover{ z-index: 1; }
Best regards,
PeterHey!
Yes – you can use a media query to change the caption position based on the screen size. Insert the code into the quick css field and change the max-width value (screen size which triggers the position change) if necessary:
@media only screen and (max-width: 1280px){ .caption_right .slideshow_caption { right: auto; } }
Cheers!
PeterThis reply has been marked as private.Hi JaredBurnett!
Did you try to use a smtp plugin: http://wordpress.org/plugins/easy-wp-smtp/ ? If the smtp plugin doesn’t work please create us an admin account and we’ll look into it.
Best regards,
PeterHi!
The enqueue/dequeue name shouldn’t be a problem – however if you think it causes the issue try following code instead
add_action('wp_enqueue_scripts', 'avia_register_child_frontend_scripts', 10); function avia_register_child_frontend_scripts() { $child_theme_url = get_stylesheet_directory_uri(); wp_register_script( 'avia-js-child-theme', $child_theme_url.'/js/googlelink.js', array('jquery'), 1, false ); wp_enqueue_script( 'avia-js-child-theme' ); wp_dequeue_script('avia-prettyPhoto'); wp_register_script( 'avia-newlightbox', $child_theme_url.'/js/jquery.prettyPhoto.js', array('jquery'), "2.0", true); wp_enqueue_script( 'avia-newlightbox' ); }
I also changed the priority from 100 to 10 – maybe 100 is too late for the lightbox script…
Regards,
PeterHi!
I always recommend 128M. Some hosters allow up to 256M.
Cheers!
PeterHi!
Try to insert following code at the bottom of functions.php
function custom_post_grid_query( $query, $params ) { $query['orderby'] = 'rand'; return $query; } add_filter( 'avia_post_grid_query', 'custom_post_grid_query', 10, 2);
If it still doesn’t work try to deactivate all third party plugins – maybe a plugin hooks into the query and changes the order.
Regards,
PeterHi Bruno!
I tested the video and it seems to work for me ( http://www.screenr.com/JOoH ). The video loaded slow because of my (mobile) internet connection I’m using at the moment but it worked. Maybe a browser extension blocks the video content? Did you try the other method I mentioned here: https://kriesi.at/support/topic/fallback-oembeded-video/ ?
Cheers!
PeterHey!
…
Cheers!
PeterHey brandonguy!
Actually I’m not sure if this hack is the best solution. You can also use the default embed shortcode: http://codex.wordpress.org/Embeds which also supports Soundcloud .
Regards,
PeterNovember 19, 2013 at 11:31 am in reply to: Request: Could Enfold retain the link post icon on mobile and post permalinks? #190517Hi chartier!
You can use following css code to show the icons on smaller screens too – insert it into the quick css field
@media only screen and (max-width: 767px){ .responsive .template-blog .blog-meta, .responsive .post_author_timeline, .responsive #top #main .sidebar { display: block; } }
Regards,
PeterHi basilicon!
Open up enfold/enfold-functions.php and replace
if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));
with
if($breadcrumb) $additions .= bcn_display(true);
Best regards,
Peter -
This reply was modified 11 years, 3 months ago by
-
AuthorPosts