Viewing 30 results - 16,681 through 16,710 (of 16,716 total)
  • Author
    Search Results
  • #118790

    Thanks for the fast reply, Ismael

    I’d like to use first way, without additional plugins.

    But it doesn’t work.

    What i did:

    1) Generate Cufon js font file here: http://cufon.shoqolate.com/generate/ and at the fifth input field from the top with the label: “Use the following value as the font-family of the generated font (optional)” enter the word “cufon” (without quotation marks).

    2) Then place the cufon file into the enfoldframeworkjsfonts folder

    3) Open up enfoldincludesadminregister-admin-options.php and add font to the font array. I put the font in 2 places:

    HERE:________________________________________________________________

    $avia_elements[] = array( “name” => “Heading Font”,

    “subtype” => apply_filters(‘avf_google_heading_font’, array(‘no custom font’=>”,

    ‘Kelson’=>’cufon_400-cufon_700.font.js’,

    AND HERE:____________________________________________________________

    $avia_elements[] = array( “name” => “Defines the Font for your body text”,

    “subtype” => apply_filters(‘avf_google_content_font’, array( ‘:: :: Web save fonts :: ::’=>”,

    ‘:: :: Google fonts :: ::’=>”,

    ‘Kelson’=>’cufon_400-cufon_700.font.js’,

    ______________________________________________________________

    I also tried to write file name without extension, like this:

    ‘Kelson’=>’cufon_400-cufon_700’,

    1) No, I’m not aware of an import feature atm but you can try to activate the debug mode – add following code to functions.php:

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    return "debug";
    }

    It should help you to view/copy the shortcodes (you’ll see the shortcodes in the standard editor if you switch from the advanced editor to the standard editor).

    2) No, afaik there’re no limitations

    3) No, but you can save & re-use existing templates: http://www.screenr.com/ee97

    #118365

    Hi Devin,

    I re-uploaded the functions-enfold.php file and it still doesn’t seem to be working. Is there a way I can private message you my wp and FTP login details so you could take a look if you don’t mind? Can’t resolve the error or the widgets working properly. The page the widgets aren’t working on are both http://www.kelly-sells.com (under Current Listings) it should be a map widget but it keeps displaying as a list) and also on http://www.kelly-sells.com/property-search (again the list is suppose to be a map, and if you were to look at the custom widget area it is set to display a map and not a list).

    The odd thing with the widgets is they were working, and without me changing anything, the started displaying a list instead. Even more bizarre is its happened at different times for me and my clients, but once its gone to a list it will never go back to the map. I am working on a Mac and have tested on Chrome, Firefox and Safari. I do have Windows 7 running on Parallels and last time I checked the site seemed to display the map fine on IE10. Very strange.

    Please let me know if you can assist me further, would be an amazingly huge help! :)

    #118440

    Hi,

    How did you make this? Because this is showing up as a portfolio ( http://hollenberg.tv/blog/ ) not as a blog. Can you explain.

    Also what page is set as a blog in Enfold > Theme Options ?

    On Settings > Reading …. the ”Your latest posts” is set as the top option, correct?

    —-

    Please open up functions.php located in the base folder of the theme and find line 79 that looks like this

    $avia_config['imgSize']['portfolio']  = array('width'=>495, 'height'=>400 )

    and change it to look like this

    $avia_config['imgSize']['portfolio']  = array('width'=>248, 'height'=>186, 'crop'=>true );

    As I said something is wrong with the way you are doing this because that page may say its a blog, but it is not, that’s why we are changing the size here for the portfolio. Just remember that changing this doesn’t automatically change the images. For that you will need to install the Simple Image Sizes plugin ( http://wordpress.org/extend/plugins/simple-image-sizes/ ) and regenerate the current images (or re-upload them). To test , you can just delete one of the big images that you wanted cropped and reupload it again.

    =================

    Please look at this video https://vimeo.com/channels/aviathemes/64996057 , as to how to add Advanced Layout Editor to Posts. Once you have it there, you can chose whether to display an image or not on your individual posts.

    Thanks,

    Nick

    #118134

    Hi,

    1) Upload the image of the horizontal line using Media and get the url of the image / see-> http://i.imgur.com/UxeA6Vf.png

    2) Add the CSS below to Quick CSS located in Enfold > Styling at the bottom of the page. Remove the http://domain.com/path/image-you-uploaded.png from the css below and in its place add the url of where you uploaded the image from step 1 above

    #top #big-hrline {
    background: url(https://domain.com/path/image-you-uploaded.png) no-repeat bottom;
    margin: 0 0 30px;
    overflow: hidden;
    padding: 0 0 20px;
    width: 100%;
    }

    3) Open /config-templatebulder/avia-shortcodes/hr.php and find line 117 which looks like this

    function shortcode_handler($atts, $content = "", $shortcodename = "", $meta = "")

    Delete line 117 and everything below until the end of the file and in its place paste the code

    function shortcode_handler($atts, $content = "", $shortcodename = "", $meta = "")
    {
    extract(shortcode_atts(array('class' => 'default', 'height' => '50', 'position'=>'center', 'shadow'=>'no-shadow'), $atts));
    $hrtype = 0;
    $output = "";
    $height = trim($height, 'px% ');
    $style = $class == 'invisible' ? "style='height:{$height}px'" : "";
    $class .= $class == 'short' ? " hr-{$position}" : "";
    $class .= $class == 'full' ? $hrtype=1 : "";

    if ($hrtype==1){
    $output = "<div id='big-hrline'></div>";
    }else{
    $output .= "<div {$style} class='hr hr-{$class} ".$meta['el_class']."'><span class='hr-inner'><span class='hr-inner-style'></span></span></div>";
    }

    return $output;
    }

    }
    }

    I tested it and it works.

    To use it just select the horizontal ruler full width separator http://www.clipular.com/c?5870161=RjLTobeBs0GTGlXzgTHEJxitw_Q&f=.png

    Thanks,

    Nick

    #117863

    Hi,

    1) You can get the advanced layout editor to work with Posts or with any Custom Post Types.. I made a video about how to do it https://vimeo.com/64996057

    2) I didn’t look at your video but I think you are trying to fly before you learned how to crawl. You are new to wordpress and are trying to do some complex things.

    3) You need to get the following plugins:

    WP-Types .. this will allow you to create the custom post types and taxonomies and the various fields. (free)

    WP-Types – The second half of the types plugin that lets you create the queries without needing to know php or wordpress.

    The one problem is that you can’t just duplicate portfolios so that you will have a different slug so you cant have a sortable portfolio with a slug website.com/games/name-of-game/ and website.com/movies/name-of-movie/ . But besides the sortable portfolio , all else can be easily done. So if you don’t mind that all your products have the same slug (equivalent of portfolio-item) if you think hard maybe can come up with one called ”asset” maybe then you be ok. I talked to Kriesi about this before, having multiple dynamic custom post types, but there seems to be some limitation in the WordPress Framework itself preventing it.

    Thanks,

    Nick

    #23024
    itechtimesNet
    Participant

    Hi,

    I have a new fresh install of WordPress and Enfold + dummy data. No plugins.

    I have the following error displayed on the top of the page. Also, the “Home” menu link simply redirecrt to http://kriesi.at/themes/enfold/

    I have the same issue after multiple re-install. Even without dummy data. Also, despite I do not install dummy data I have all the menu links and “Home” link redirect to http://kriesi.at/themes/enfold/

    Warning: session_start() [function.session-start]: open(/tmp/sess_c0077b9e2074290fbb7230a6891b13cb, O_RDWR) failed: Permission denied (13) in /home/balusite/public_html/enfold/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php on line 27

    Warning: session_start() [function.session-start]: Cannot send session cookie – headers already sent by (output started at /home/balusite/public_html/enfold/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php:27) in /home/balusite/public_html/enfold/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php on line 27

    Warning: session_start() [function.session-start]: Cannot send session cache limiter – headers already sent (output started at /home/balusite/public_html/enfold/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php:27) in /home/balusite/public_html/enfold/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php on line 27

    #118161

    I tested your website with: http://www.whynopadlock.com/check.php and it seems like the livehelp url breaks the secure content status:

    #116653

    In reply to: Images look blurred !!

    If I go here: http://kriesi.at/themes/enfold/portfolio-item/slider-two-third/ and view the info for the first image, it shows 710×575 (scaled to 666 x 539). I tried changing the functions.php file to 694 x 562 as it says above, but it didn’t change.

    What I want is for that image on the single portfolio 2/3 to be 100%, not scaled or it will stretch and look blurry.

    I also tried setting the width of the template to wide and widest to see if that changed, but both times it scales to 666. I was not able to find where to fix this, please help! I need to know what size to make about 200 images, and I need it done yesterday. :)

    #116651

    In reply to: Images look blurred !!

    Hello,

    I do a test for 1 image and it looks better

    If i replace in function.php

    $avia_config = array(‘width’=>710, ‘height’=>270);

    by

    $avia_config = array(‘width’=>694, ‘height’=>562);

    and regenerate images, you think this will fix the problem ?

    #117389

    In reply to: Blog option

    Thx Ismael, but your code doesn’t work

    In fact, I would to remove the page title, for insert myself in the body of the page.

    Instead, I would like to insert this :

    567432Capturedcran20130508112040.png

    Thx very much for your support

    #116887

    This is the code I put in header.php

    <link href="http://cdn-images.mailchimp.com/embedcode/classic-081711.css" rel="stylesheet" type="text/css">
    <style type="text/css">
    #mc_embed_signup{background:#fff; clear:left; font:14px Helvetica,Arial,sans-serif; width:400px;}
    /* Add your own MailChimp form style overrides in your site stylesheet or in this style block.
    We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */
    </style>

    #22952
    RayhawkCorp
    Participant

    please help

    I just bought it yesterday from themeforest.com and got a big problem for installation. When i try to use the wordpress to install it, it will tell me: do you really want to do this? try again. I manually uploaded the enfold folder to the wp-content/theme folder, while the other themes i uploaded are working correctly, but when i try to preview the site under enfold theme, it shows the errors:

    Warning: session_start() [function.session-start]: open(/home/167483/data/tmp/sess_a464ac234abfa870cd58564900caee2b, O_RDWR) failed: No such file or directory (2) in /nfs/c03/h03/mnt/167483/domains/samsolakyan.com/html/wp-content/themes/enfold/enfold/config-templatebuilder/avia-shortcodes/portfolio.php on line 27

    Warning: session_start() [function.session-start]: Cannot send session cookie – headers already sent by (output started at /nfs/c03/h03/mnt/167483/domains/samsolakyan.com/html/wp-content/themes/enfold/enfold/config-templatebuilder/avia-shortcodes/portfolio.php:27) in /nfs/c03/h03/mnt/167483/domains/samsolakyan.com/html/wp-content/themes/enfold/enfold/config-templatebuilder/avia-shortcodes/portfolio.php on line 27

    Warning: session_start() [function.session-start]: Cannot send session cache limiter – headers already sent (output started at /nfs/c03/h03/mnt/167483/domains/samsolakyan.com/html/wp-content/themes/enfold/enfold/config-templatebuilder/avia-shortcodes/portfolio.php:27) in /nfs/c03/h03/mnt/167483/domains/samsolakyan.com/html/wp-content/themes/enfold/enfold/config-templatebuilder/avia-shortcodes/portfolio.php on line 27

    #117387

    In reply to: Blog option

    I found the answer. In the ThemeForest site, you say that is the update 1.4.

    In fact, in the file hedear.php is marked 1.3.1.

    I had simply replaced by 1.4.

    I found a problem that affects SEO. Look at the screen.

    626960Capturedcran20130507113728.png

    Here “Features” is an H1, not good in terms of SEO. How to remove?

    I wish that instead, there is the watermark (which is right)

    How could I do?

    Thx

    R3vOx

    #117498

    In reply to: Duplicate blog page

    Hi Bethany,

    A page template in wordpress is what would be selected from the templates dropdown when creating a page. So adding the template label inside your cases.php would give you that file showing in that dropdown.

    If you have not already, this is a good overview of templates http://codex.wordpress.org/Stepping_Into_Templates and http://codex.wordpress.org/Page_Templates

    Generally, I’m not sure you’ll be able to do what you are looking for just because a custom post type isn’t a post but actually a page (a weird wordpress naming scheme). Blog posts specifically are the only thing in worpdress that gets treated like actual blog posts with the ability to use archives by date and things like that.

    If its just the style of the page however, you may find this tutorial by Nick helpful: https://vimeo.com/channels/aviathemes/64996057

    Regards,

    Devin

    #117588

    In reply to: Demo Content Galerien

    Hallo,

    ich habe leider keinen Zugriff auf den Demo Content. Möglicherweise ist er aber auch im Dummy Content enthalten (Enfold und den grünen “Dummy Data” button klicken – aber Achtung nur auf einem Testsystem, den es kann bestehender Content überschrieben werden).

    Wenn die Gallerie neben “SOME ENFOLD CORE FEATURES” gemeint ist – diese lässt sich sehr leicht nachstellen, nämlich mit: http://www.clipular.com/c?5499120=Mnr1inoJoiqNQM7uPkrYLQuixaM&f=.png

    Vermutlich fehlen aber die kleinen Thumbnail Bilder in der Auswahl – diese werden im nächsten Update enthalten sein. Wenn man diese jetzt schon haben möchte, öffne wp-contentthemesenfoldconfig-templatebuilderavia-shortcodesgallery.php und ersetze:

    "subtype" =>  AviaHelper::get_registered_image_sizes(array('thumbnail','logo','widget','slider_thumb'))

    mit:

    "subtype" =>  AviaHelper::get_registered_image_sizes(array('logo'))

    #117362

    In reply to: Blog Author Block

    1) If you want to add the author blog to single post pages open up single.php and replace:

    get_template_part( 'includes/loop', 'index' );

    with:

    get_template_part( 'includes/loop', 'index' );

    $author_id = get_query_var( 'author' );
    if(empty($author_id)) get_the_author_meta('ID');
    $gravatar = get_avatar( get_the_author_meta('email', $author_id), '75' );
    $name = get_the_author_meta('display_name', $author_id);
    $heading = __("About",'avia_framework') ." ".$name;
    $heading_s = __("Entries by",'avia_framework') ." ".$name;
    $description = get_the_author_meta('description', $author_id);

    if(empty($description))
    {
    $description = __("This author has yet to write their bio.",'avia_framework');
    $description .= '</br>'.sprintf( __( 'Meanwhile lets just say that we are proud %s contributed a whooping %s entries.' ), $name, count_user_posts( $author_id ) );

    if(current_user_can('edit_users') || get_current_user_id() == $author_id)
    {
    $description .= "</br><a href='".admin_url( 'profile.php?user_id=' . $author_id )."'>".__( 'Edit the profile description here.' )."</a>";
    }
    }

    echo "<span class='post-author-format-type blog-meta'><span class='rounded-container'>{$gravatar}</span></span>";
    echo "<div class='author_description '><h3 class='author-title'>{$heading}</h3>".wpautop($description)."<span class='author-extra-border'></span></div>";

    2) To remove the preview image link open up includes/loop-index.php and delete following line:

    if($slider) $slider = '<a href="'.$link.'">'.$slider.'</a>';

    #116926

    In reply to: Popular posts list bug

    Hi,

    Congratulations, you have found a genuine bug that I was able to reproduce. Well not so much a bug, since if you would have added the image via the slider it would have used that image, but there was no fallback to featured image unlike the other widgets.

    So please open up /framework/php/class-framework-widgets.php and find lines 944-947 that look like:

    if( $slides != "" && !empty( $slides[0]['slideshow_image'] ) )
    {
    $image = avia_image_by_id($slides[0]['slideshow_image'], 'widget', 'image');
    }

    and replace the block of code above with the code below

    if( $slides != "" && !empty( $slides[0]['slideshow_image'] ) )
    {
    $image = avia_image_by_id($slides[0]['slideshow_image'], 'widget', 'image');
    }
    if(!$image && current_theme_supports( 'post-thumbnails' ))
    {
    $image = get_the_post_thumbnail( get_the_ID(), 'widget' );
    }

    Please let us know how it worked out.

    Thanks,

    Nick

    #22851
    emv2013
    Participant

    Hi,

    Can somebody help me with this kind of problem?

    Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 122880 bytes) in /public/sites/www.ellenmartineverkade.nl/wp-content/themes/enfold/includes/admin/register-dynamic-styles.php on line 121

    Regards

    #117382

    In reply to: Blog option

    1) It’s ok :)

    2) Ok, I’d like to my homepage, the images to appear in a circle of 150 by 150, like this : 810197Capturedcran20130505114631.png

    What code snippet I need to integrate to had the same result?

    3) It’s ok :)

    Thank you very much Dude :)

    #117381

    In reply to: Blog option

    1) Maybe you need to activate the option on the post editor screen. Click on “Screen options” in the right corner and check the excerpt checkbox: http://www.clipular.com/c?5393178=DWPIZfYn3Pt6vQ_8EL0lN6Pc9Js&f=.png

    2) The reason is that the portfolio thumbnail size is used which does not crop the image. We’ll include an option to select a different thumbnail size in the next version. For now you can change the thumbnail dimensions in functions.php – search for:

    $avia_config['imgSize']['portfolio'] 		 	= array('width'=>495, 'height'=>400 );						// images for portfolio entries (2,3 column)

    and set the height to a lower value. Afterwards regenerate the thumbnails http://wordpress.org/extend/plugins/regenerate-thumbnails/

    Another option would be to upload bigger thumbnails with at least 495x400px.

    3) Probably a bug but I fixed it. Try following – open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodespostslider.php

    and replace:

    $excerpt .= '<div class="read-more-link"><a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span></a></div>';

    with

    $excerpt .= '<div class="read-more-link"><a href="'.get_permalink($the_id).'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span></a></div>';

    #116779

    In reply to: Child Theme

    I created a simple child theme for you: http://www.mediafire.com/?7r4payhwqdjeihh – just upload & install it. You can add your custom css code into style.css and your php code goes into functions.php.

    #116732

    Hi,

    Please open up /config-templatebuilder/avia-shortcodes/gallery.php and find line 178 than looks like

    $thumbs .= " <a href='".$link[0]."' data-rel='gallery-".self::$gallery."' data-prev-img='".$prev[0]."' {$class} data-onclick='{$counter}'><img {$tooltip} src='".$img[0]."' title='' alt='' /></a>";

    and change it to look like

    $thumbs .= " <a href='".$link[0]."' data-rel='gallery-".self::$gallery."' data-prev-img='".$prev[0]."' {$class} data-onclick='{$counter}'><img {$tooltip} src='".$img[0]."' title='' alt='' /><span class='captions-gallery'>".$caption."</span></a>";

    The prettyPhoto is a bit tougher, please hang on and let me know first how that worked out as I work on prettyPhoto.

    Thanks,

    Nick

    I just noticed that Kriesi uses the function get_previous_post/get_next_post functions for the next/previous links. Unfortunately these functions rely on the get_adjacent_post() function in wp-includeslink-template.php which does not support custom taxonomies (like portfolio entries, etc.) yet. It just supports standard posts and categories if you want to select posts from the same category. So for now this won’t be possible but you can add it to the feature request list: https://kriesi.at/support/topic/enfold-feature-requests

    A workaround would be to use a plugin from here: http://wordpress.stackexchange.com/questions/8058/next-post-link-on-custom-taxonomy and to replace the get_previous_post/get_next_post function calls in functions-enfold.php:

    $entries['prev'] = get_previous_post($same_category);
    $entries['next'] = get_next_post($same_category);

    with a custom next/previous page function. I guess we need to wait for WP3.7 – then the next/previous page functions should also support custom taxonomies: http://core.trac.wordpress.org/ticket/17807

    Hi Ariel,

    There is no icon with the icon font used so if you want to add it in you can add a new option for it in includes>admin>register-admin-options.php after the vimeo option on line 779:

    'Vimeo' 	=> 'vimeo',
    'Youtube' => 'youtube',

    You would then need to style the youtube class with your own icon as the background image and give it a defined width/height. Kriesi said that if/when an icon becomes available it will be added in.

    Regards,

    Devin

    Edit: May be able to be added in shortly, will fully update when I know one way or another.

    #22632
    R3V0X
    Participant

    Hey ! This topic was locked : https://kriesi.at/support/topic/icons-before-the-title-menu#post-107848 but Ismael didn’t answer at my question.

    I would like to insert an icon in the main menu as the site mentioned in the other topic.

    Like this : 827400Capturedcran20130430111558.png

    Thx

    #115331

    In reply to: Blog Layout

    Hi,

    The answer is Yes and Yes.

    First thing you should do is add the dynamic layout functionality to posts which is done by opening up /config-templatebuilder/avia-template-builder/config/meta.php: and finding lines 4-7 which look like

    $boxes = array(
    array( 'title' =>__('Avia Layout Builder','avia_builder'), 'id'=>'avia_builder', 'page'=>array('portfolio','page'), 'context'=>'normal', 'priority'=>'high', 'expandable'=>true ),
    array( 'title' =>__('Layout','avia_builder'), 'id'=>'layout', 'page'=>array('portfolio', 'page' , 'post'), 'context'=>'side', 'priority'=>'low'),
    );

    and replacing those line with the block below

    $boxes = array(
    array( 'title' =>__('Avia Layout Builder','avia_builder'), 'id'=>'avia_builder', 'page'=>array('portfolio','page','post'), 'context'=>'normal', 'priority'=>'high', 'expandable'=>true ),
    array( 'title' =>__('Layout','avia_builder'), 'id'=>'layout', 'page'=>array('portfolio', 'page' , 'post'), 'context'=>'side', 'priority'=>'low'),
    );

    =================

    Now just add the elements as you see here: http://i.imgur.com/CvFeJUK.png

    And you get this:. http://i.imgur.com/yIxN1ou.png

    You can see there are 2 titles, so You may not need to add the very first element after 1/1

    ================

    To change the default image size of any location within the theme, it is best to install Simple Image Sizes plugin http://wordpress.org/extend/plugins/simple-image-sizes/

    The plugin will add all the default sizes to Settings > Media , and you can change width height as well as to force a crop or not. Just remember that after changing the settings using the plugin, only the new images you add will be affected while the ones you uploaded will remain the same unless you regenerate them on the same page using the same plugin.

    Thanks,

    Nick

    #114525

    Hi,

    I changed a good portion of the code. It’s not as neat and high level like Kriesi’s because unfortunately I don’t have his skills. However it works with directions as well as single points, with multiple maps on a single page of both driving directions and only one location map point.

    View post on imgur.com

    I am certain when the next update comes Kriesi will do his magic. But for now:

    Please open up /framework/php/class-framework-widgets.php and find line 1171 which looks like:

    $directionsForm = "";

    And delete line 1171 and everything below it.

    In its place, please add the code below

    if(empty($avia_config['g_maps_widget_active']))
    {
    $output .= "<script type='text/javascript' src='$prefix://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false'></script>";
    $avia_config['g_maps_widget_active'] = 0;
    }

    $avia_config['g_maps_widget_active'] ++;

    $output .= "<script type='text/javascript'>
    function makeMap_".$avia_config['g_maps_widget_active']."() {
    var directionsDisplay;
    directionsDisplay = new google.maps.DirectionsRenderer;
    var directionsService = new google.maps.DirectionsService;
    var map;
    var latlng = new google.maps.LatLng(".$lat.", ".$lng.");
    var directionsto = '".$directionsto."';
    var myOptions = {
    zoom:".$zoom.",
    mapTypeControl:true,
    mapTypeId:google.maps.MapTypeId.".$type.",
    mapTypeControlOptions:{style:google.maps.MapTypeControlStyle.DROPDOWN_MENU},
    navigationControl:true,
    navigationControlOptions:{style:google.maps.NavigationControlStyle.SMALL},
    center:latlng
    };
    map = new google.maps.Map(document.getElementById('avia_google_maps_$unique'), myOptions);
    if(directionsto.length > 5) {
    directionsDisplay.setMap(map);
    var request = {
    origin:directionsto,
    destination:latlng,
    travelMode:google.maps.DirectionsTravelMode.DRIVING
    };
    directionsService.route(request, function(response, status) {
    if(status == google.maps.DirectionsStatus.OK) {
    directionsDisplay.setDirections(response)
    }
    })
    }
    else {
    var contentString = '".$content."';
    var infowindow = new google.maps.InfoWindow({
    content: contentString
    });
    var marker = new google.maps.Marker({
    position: latlng,
    map: map,
    title: ''
    });
    }
    }
    jQuery(document).ready(function() {
    makeMap_".$avia_config['g_maps_widget_active']."()
    });
    </script>
    <div id='avia_google_maps_$unique' class='avia_google_maps_container'></div>
    ";

    return $output;
    }

    Thanks,

    Nick

    #115525

    In reply to: Installation Enfold

    Nach dem FTP-Upload lautet die Fehlermeldung folgendermaßen:

    Fatal error: Cannot redeclare layerslider_load_lang() (previously declared in /mnt/webk/b3/32/52856732/htdocs/WordPress_01/wp-content/plugins/LayerSlider/layerslider.php:89) in /mnt/webk/b3/32/52856732/htdocs/WordPress_01/wp-content/themes/enfold/config-layerslider/LayerSlider/layerslider.php on line 102

    #114917

    Started the Dutch translation, just under 10% so still a long way to go ;-)

    http://www.mediafire.com/download.php?cwbpn4yna5wq76n

Viewing 30 results - 16,681 through 16,710 (of 16,716 total)