Forum Replies Created

Viewing 30 posts - 1 through 30 (of 33 total)
  • Author
    Posts
  • in reply to: Change Design of Blog Article Element #1145436

    Hi Victoria,

    that works great – thank you so much! One more question: is it possible to add a hover interaction, in order to make it underlined & gold with the mouse over?

    Thank you so much!
    Jan

    • This reply was modified 4 years, 11 months ago by Nu-Vision.
    in reply to: Remove Padding on mobile #1133772

    Hi ismael,

    thank you – i think we are getting to the bottom of this. I am talking about the container, not the section. I want to change the container width on mobile to only like 20px on the right side. So the text inside the About-Us image wouldn´t break so often: https://imgur.com/a/lIvdnWd

    Can you help me one last time? Thankn you so much!

    regards,
    Jan

    in reply to: Remove Padding on mobile #1133771

    Hi ismael,

    thank you – i think we are getting to the bottom of this. I am talking about the container, not the section. I want to change the container width on mobile to only like 20px on the right side. So the text inside the About-Us image wouldn´t break so often: https://imgur.com/a/lIvdnWd

    Can you help me one last time? Thankn you so much!

    regards,
    Jan

    in reply to: Remove Padding on mobile #1133335

    Hi Ismael,

    no – I am refferring to the 1/1 Container (https://imgur.com/a/8Ch4Tr0 This one on the homepage). Could you redo the code for this one?
    I am looking for it to apply ONLY to mobile though – is that possible?

    Regards,
    Jan

    • This reply was modified 5 years ago by Nu-Vision.
    in reply to: Remove Padding on mobile #1132237
    This reply has been marked as private.
    in reply to: Remove Padding on mobile #1131535

    Hi Jordan,

    thank you so much – it still didn´t work for some reason. I tried your variant (deleted cache and all) and also tried via CSS:

    @media only screen and (max-width: 1024px) {
    #conpad {
    padding-right:20px !important;
    }
    }

    Still it does not work – is there any other way or better code?

    Thank you!
    jan

    in reply to: Remove Padding on mobile #1131041

    Hi Rikard,

    thanks a lot – unfortunately that did not work for me. I am also trying to change both containers at once. Is there any alternative?

    Best regards,
    Jan

    Edit: I am looking to change the padding on Tablet & Mobile only. Thank you so much for your help!

    • This reply was modified 5 years ago by Nu-Vision.
    in reply to: Latest News Widget + Meta Tag #1051679

    Hi Nikko,

    pure awesomeness, you guys rock! Thank you so much!
    You can close the topic, it worked perfectly.

    Regards,
    Jan

    in reply to: Latest News Widget + Meta Tag #1049664

    Hi Vinay,

    I did exactly what you told me, this is the code I get:

    [av_sidebar widget_area='Sidebar Pages' av_uid='av-14hvt']
    [av_button label='Next events' link='manually,https://frankfurt.agbc.org/events/' link_target='' size='large' position='center' label_display='' icon_select='yes' icon='ue80b' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff' av_uid='av-jonbc5vm' admin_preview_bg='']

    The meta key is event_date. Could you tell me what to do with it exactly and where to place it?
    Thank you so much and happy new year!
    Jan

    in reply to: Latest News Widget + Meta Tag #1048440

    Hi Nikko,

    No problem, totally understand that! You can find the code here: https://pastebin.com/FKgGPtTK
    I am guessing it is an easy fix if ones knows what he is doing, sadly i don´t! :@

    Would be a little christmas miracle if you could do this for me!

    Thank you so much!
    Jan

    in reply to: Latest News Widget + Meta Tag #1047243

    Hi cg,

    thank you very much for the guideline, your the men! Since I am personally not smart enough to code, I sadly cant follow all of the steps . After one eternity I found the code, but its verrrry long and i have now idea what to do and where.

    Could someone from the enfold team maybe help out?

    I really appreciate your help cg but i understand you have a familie and cant hold hand with me here ;)
    This is the code i found:

    if (!class_exists(‘avia_newsbox’)) { class avia_newsbox extends WP_Widget { var $avia_term = ”; var $avia_post_type = ”; var $avia_new_query = ”; function __construct() { $widget_ops = array(‘classname’ => ‘newsbox’, ‘description’ => __(‘A Sidebar widget to display latest post entries in your sidebar’, ‘avia_framework’) ); parent::__construct( ‘newsbox’, THEMENAME.’ Latest News’, $widget_ops ); } function widget($args, $instance) { global $avia_config; extract($args, EXTR_SKIP); echo $before_widget; $title = empty($instance[‘title’]) ? ” : apply_filters(‘widget_title’, $instance[‘title’]); $count = empty($instance[‘count’]) ? ” : $instance[‘count’]; $cat = empty($instance[‘cat’]) ? ” : $instance[‘cat’]; $excerpt = empty($instance[‘excerpt’]) ? ” : $instance[‘excerpt’]; $image_size = isset($avia_config[‘widget_image_size’]) ? $avia_config[‘widget_image_size’] : ‘widget’; if ( !empty( $title ) ) { echo $before_title . $title . $after_title; }; if(empty($this->avia_term)) { $additional_loop = new WP_Query(“cat=”.$cat.”&posts_per_page=”.$count); } else { $catarray = explode(‘,’, $cat); if(empty($catarray[0])) { $new_query = array(“posts_per_page”=>$count,”post_type”=>$this->avia_post_type); } else { if($this->avia_new_query) { $new_query = $this->avia_new_query; } else { $new_query = array( “posts_per_page”=>$count, ‘tax_query’ => array( array( ‘taxonomy’ => $this->avia_term, ‘field’ => ‘id’, ‘terms’ => explode(‘,’, $cat), ‘operator’ => ‘IN’) ) ); } } $additional_loop = new WP_Query($new_query); } if($additional_loop->have_posts()) : echo ‘<ul class=”news-wrap image_size_’.$image_size.'”>’; while ($additional_loop->have_posts()) : $additional_loop->the_post(); $format = “”; if(empty($this->avia_post_type)) $format = $this->avia_post_type; if(empty($format)) $format = get_post_format(); if(empty($format)) $format = ‘standard’; $the_id = get_the_ID(); $link = get_post_meta( $the_id ,’_portfolio_custom_link’, true) != “” ? get_post_meta( $the_id ,’_portfolio_custom_link_url’, true) : get_permalink(); echo ‘<li class=”news-content post-format-‘.$format.'”>’; //check for preview images: $image = “”; if(!current_theme_supports(‘force-post-thumbnails-in-widget’)) { $slides = avia_post_meta(get_the_ID(), ‘slideshow’, true); if( $slides != “” && !empty( $slides[0][‘slideshow_image’] ) ) { $image = avia_image_by_id($slides[0][‘slideshow_image’], $image_size, ‘image’); } } if(current_theme_supports( ‘post-thumbnails’ ) && !$image ) { $image = get_the_post_thumbnail( $the_id, $image_size ); } $time_format = apply_filters( ‘avia_widget_time’, get_option(‘date_format’).” – “.get_option(‘time_format’), ‘avia_newsbox’ ); echo ““; $nothumb = (!$image) ? ‘no-news-thumb’ : ”; echo “<span class=’news-thumb $nothumb’>”; echo $image; echo “</span>”; if(empty($avia_config[‘widget_image_size’]) || ‘display title and excerpt’ != $excerpt) { echo “<strong class=’news-headline’>”.get_the_title(); if($time_format) { echo “<span class=’news-time’>”.get_the_time($time_format).”</span>”; } echo ““; } echo ““; if( ‘display title and excerpt’ == $excerpt ) { echo “<div class=’news-excerpt’>”; if(!empty($avia_config[‘widget_image_size’])) { echo ““; echo “<strong class=’news-headline’>”.get_the_title().”“; echo ““; if($time_format) { echo “<span class=’news-time’>”.get_the_time($time_format).”</span>”; } } the_excerpt(); echo “</div>”; } echo ‘‘; endwhile; echo ““; wp_reset_postdata(); endif; echo $after_widget; } function update($new_instance, $old_instance) { $instance = $old_instance; $instance[‘title’] = strip_tags($new_instance[‘title’]); $instance[‘count’] = strip_tags($new_instance[‘count’]); $instance[‘excerpt’] = strip_tags($new_instance[‘excerpt’]); $instance[‘cat’] = implode(‘,’,$new_instance[‘cat’]); return $instance; } function form($instance) { $instance = wp_parse_args( (array) $instance, array( ‘title’ => ”, ‘count’ => ”, ‘cat’ => ”, ‘excerpt’=>” ) ); $title = strip_tags($instance[‘title’]); $count = strip_tags($instance[‘count’]); $excerpt = strip_tags($instance[‘excerpt’]); $elementCat = array(“name” => __(“Which categories should be used for the portfolio?”, ‘avia_framework’), “desc” => __(“You can select multiple categories here”, ‘avia_framework’), “id” => $this->get_field_name(‘cat’).”[]”, “type” => “select”, “std” => strip_tags($instance[‘cat’]), “class” => “”, “multiple”=>6, “subtype” => “cat”); //check if a different taxonomy than the default is set if(!empty($this->avia_term)) { $elementCat[‘taxonomy’] = $this->avia_term; } $html = new avia_htmlhelper(); ?> <p><label for=”<?php echo $this->get_field_id(‘title’); ?>”><?php _e(‘Title:’, ‘avia_framework’); ?> <input class=”widefat” id=”<?php echo $this->get_field_id(‘title’); ?>” name=”<?php echo $this->get_field_name(‘title’); ?>” type=”text” value=”<?php echo esc_attr($title); ?>” /></label></p> <p> <label for=”<?php echo $this->get_field_id(‘count’); ?>”><?php _e(‘How many entries do you want to display: ‘, ‘avia_framework’); ?></label> <select class=”widefat” id=”<?php echo $this->get_field_id(‘count’); ?>” name=”<?php echo $this->get_field_name(‘count’); ?>”> <?php $list = “”; for ($i = 1; $i <= 20; $i++ ) { $selected = “”; if($count == $i) $selected = ‘selected=”selected”‘; $list .= “<option $selected value=’$i’>$i</option>”; } $list .= “</select>”; echo $list; ?> </p> <p><label for=”<?php echo $this->get_field_id(‘cat’); ?>”><?php _e(‘Choose the categories you want to display (multiple selection possible):’, ‘avia_framework’); ?> <?php echo $html->select($elementCat); ?> </label></p> <p> <label for=”<?php echo $this->get_field_id(‘excerpt’); ?>”><?php _e(‘Display title only or title & excerpt’, ‘avia_framework’); ?></label> <select class=”widefat” id=”<?php echo $this->get_field_id(‘excerpt’); ?>” name=”<?php echo $this->get_field_name(‘excerpt’); ?>”> <?php $list = “”; $answers = array( ‘show title only’ => __( ‘show title only’, ‘avia_framework’ ), ‘display title and excerpt’ => __(‘display title and excerpt’, ‘avia_framework’) ); foreach ( $answers as $key => $answer ) { $selected = “”; if( $key == $excerpt ) $selected = ‘selected=”selected”‘; $list .= “<option $selected value=’$key’>$answer</option>”; } $list .= “</select>”; echo $list; ?> </p> <?php } } }

    • This reply was modified 5 years, 8 months ago by Nu-Vision.
    in reply to: Latest News Widget + Meta Tag #1046987

    Thank you for the quick answer cg! Since there is already a few posts i would like to find a different solution than an event plugin.
    Do you have any idea on how the code for embedding the custom field could look like?

    Regards,
    Jan

    in reply to: Timeline Element Bug #1032233

    You can close it thank you!

    in reply to: Timeline Element Bug #1032194

    Hi Rikard,
    worked like a charm! Thank you very much!

    in reply to: Theme Update & Menu Problem #1032096

    You can close it thank you!

    in reply to: Theme Update & Menu Problem #1031613

    That did the trick, totally forgot about FastestCache! Thank you Rikard!

    in reply to: Theme Update & Menu Problem #1031174

    Dear Victoria,

    I updated the php to 7.2 and I also updated the enfold theme via ftp.
    Problem remains, the pages impressum and datenschutz are not reachable. “Error 404”

    You can reconstruct by just scrolling to the footer or sockel and clicking on the links.
    What could be a solution here?

    Best regards,
    Jan

    in reply to: Remove white padding on top of the page #1027326

    Hi Mike,

    I found a different design solution a few hours later, but i couldnt figure out how to close the topic.
    Anyway, thank you for your answer! Can you close it? :)

    Regards,
    Jan

    in reply to: Border thickness/color on color sections #987751

    Hi Jordan,

    its seems like it yes! No problem though, thank you for your help.
    You can close the topic :)

    Best regards,
    Jan

    in reply to: Border thickness/color on color sections #987364

    Hi Rikard,

    it looks like the admin bar prevents the code from showing.
    Looks fine in a different browser and incognito!

    Thank you very much!
    Best regards,
    Jan

    in reply to: Border thickness/color on color sections #986844

    Hey Jordan,

    sure: https://imgur.com/a/NrExv0N (i want to accomplish a very thick border at every end of the screen)
    backend: https://imgur.com/a/MajmN4a

    Thank you,
    Jan

    • This reply was modified 6 years, 1 month ago by Nu-Vision.
    in reply to: Small Separator underneath Header #985463

    Thank you! worked

    in reply to: Small Separator underneath Header #961383

    It is in the private content!

    in reply to: Shadow on column #956668

    Hi Rikard,

    can you explain precisely how one does that?

    Best regards,
    Jan

    in reply to: Button width on mobile #851793

    Ay Rikard,

    It seems that its just my phone doing this, newer Phones seem to accept the CSS.
    Checked on another handy, i really need a new one!
    Thank you for your help anyways!

    Best regards,
    Jan

    in reply to: Button width on mobile #851283
    in reply to: Margin between Picture and Text in Main Content #850969

    Ay Victoria,

    I learned today that my Iphone 3 Screen is too small for 2017 Websites !
    Going to buy a new phone haha

    Thank you for your help,
    Jan

    in reply to: Margin between Picture and Text in Main Content #849760

    Ay forgot about that my bad.

    in reply to: Remove Burger on mobile #849632

    Ay never mind, I found the solution.
    Didnt know there was a Phone Number Option integrated in the Enfold Theme.

    Thank you anyways!

    in reply to: Remove Burger on mobile #849166

    Ay Victoria.

    yes sure, the website will only be used on mobile!

    Thank you in advance!

Viewing 30 posts - 1 through 30 (of 33 total)