Forum Replies Created

Viewing 30 posts - 1 through 30 (of 31 total)
  • Author
    Posts
  • in reply to: Blog Post Not Showing Excerpt & Read More Link #955514

    Excerpts not showing on my blog page. I’ve done this a million times before and now it’s not working. Shouldn’t be this difficult, right?? Links and login below.

    Never mind figured it out!

    For those interested, just open up a new blog post and write what you want to write with your hyperlink. Click from VISUAL tab over to HTML tab and copy/paste into the footer widget text field and voila.

    in reply to: How do I superscript TM symbol in headers/paragraphs #778121

    Whoops wrong thread. Disregard.

    in reply to: How do I superscript TM symbol in headers/paragraphs #778120

    I tried emptying cache and even taking out and then re-adding the below quick CSS and it hasn’t worked. It still appears a different font. I’d rather just choose another font that works if this one didn’t install correctly. How do I do that? It won’t let me in settings now.

    h1, h2, h3, h4, h5, h6 {
    font-family: ProximaNova-regular !important;
    }

    Sure thing. I wasn’t sure how to attach the screenshots so have uploaded them to my media library and linked to them below in the private content section. My Smartphone is an iPhone6. I haven’t run into this issue before, so was surprised.

    in reply to: How do I superscript TM symbol in headers/paragraphs #769109

    Hi Jordan,
    It still looks the same on this end.

    Jessica

    in reply to: How do I superscript TM symbol in headers/paragraphs #769038

    Whoops, so sorry about that Jordan. I guess my attempts at creating an admin sign in didn’t work. Login below.

    in reply to: Use Contact Form with CF7 Integration #720014

    I wish I could help but I gave up on this feature. Huge frustration with contact forms in this theme. I use Gmail and no idea why it won’t work.

    It did twice and now nothing.

    in reply to: How to move button down on full screen slider #716244

    It looks perfect. Thank you!

    You can close this ticket.

    Jessica

    in reply to: Change Opacity for Slider Caption Frames #716243

    Perfect! Worked like a charm.

    You can close this ticket.

    Jessica

    in reply to: How to move button down on full screen slider #716128

    Thank you! That worked beautifully. Is it possible to move it up a few lines so it’s not at the very bottom?

    Jessica

    in reply to: How to move button down on full screen slider #715528

    I migrated the site last night so the link and login below should now work. Sorry about that. Could you look again?

    Well, I’ve added in some Quick CSS, will that be effected?

    I know.. the auto updates won’t work, nor would the transient app. Looks like I need to do it manually via FTP. Silly question, but how does that not overwrite everything on my current site?

    Jessica

    in reply to: Masonry Galleries not showing. #707313

    Somehow it’s working! It must have just taken some time.

    Cheers,
    Jessica

    in reply to: [Shopify] Embedding a Buy Button #707312

    I no longer need this feature for the time being so you can close this ticket.

    Thanks!

    in reply to: [Shopify] Embedding a Buy Button #706838

    I’m currently looking to do this exact same thing. What was the solution?

    Thanks!

    in reply to: Masonry Galleries not showing. #704504

    Hi Rikard,
    I’ve synced my theme (API/name now in WordPress) I checked the theme and it’s 3.7 version. Says I have the current version and no updates available. Does this just take a while or am I missing something? I did notice Events Calendar plugin update was new so I clicked on that.

    Jessica

    in reply to: Masonry Galleries not showing. #704499

    Hi Rikard,
    Ah, good catch I’ll do that. Quick question. I use your theme a lot – so I’ve purchased and downloaded several by now and look forward to going forward!

    Where is the API code found in the zip file so I can be sure to update/sync my clients wordpress site with the right file? And make updating the theme easier going forward?

    Thanks!

    Jessica

    in reply to: Remove menu bar line until scroll #704072

    This worked beautifully. Thank you, Yigit! You can close this convo. Thanks for the recommendation on the one page demo. That’s exactly what I was trying to replicate.

    Jessica

    in reply to: Remove menu bar line until scroll #704067

    Hi, yes, I’d like to do what the Enfold one page demo does. Where exactly is “Header visibility and transparency” located? Is this a tab? I don’t see any labeled that.

    Pasting in the code you gave me just gives me a big blank white margin with no logo or menu. So I took it out again as it didn’t work.

    Thanks!

    in reply to: Remove menu bar line until scroll #704058

    Yigit! I’ve used the code below to hide the menu, but I also want to hide the logo the same way (so it appears in the line w/ the menu only when someone scrolls.) is there some quick CSS for this?

    So, I’ve already added:

    .header-scrolled nav.main_menu {
    opacity: 1;
    }
    nav.main_menu {
    opacity: 0;
    }

    .header-scrolled #header_main {
    border-bottom: solid 1px #e2e2e2;
    }
    #header_main {
    border-bottom: none;
    }

    in reply to: Masonry Galleries not showing. #703994

    Hi there,
    My masonry gallery stopped working all of a sudden and no longer shows on my about page. Can you help troubleshoot?

    Thank you!

    in reply to: Where to embed code snippet for popup signup form #703985

    Hi there,
    Great thread. I’ve copied and pasted my mail chimp pop up code into the functions.php file but nothing seems to be happening. Can a moderator check my work to troubleshoot?

    in reply to: Events Countdown Widget Bug #703528

    Hi There,
    I’m a little confused. I see a config.php file in the editor. (config-templatebuilder/config.php) I don’t see avia shortcodes or the events_countdown file. Am I in the right place?

    When I click on it, I see the below code. Are you saying replace all of the below with the 226 lines of code accessed through the link you sent?

    I may be on the wrong trail.

    Here’s the code I see when I click on config.php

    <?php
    /*function that checks if the avia builder was already included*/
    function avia_builder_plugin_enabled()
    {
    if (class_exists( ‘AviaBuilder’ )) { return true; }
    return false;
    }

    //set the folder that contains the shortcodes
    function add_shortcode_folder($paths)
    {
    $paths = array(dirname(__FILE__) .”/avia-shortcodes/”);
    return $paths;
    }

    add_filter(‘avia_load_shortcodes’,’add_shortcode_folder’);

    //set the folder that contains assets like js and imgs
    function avia_builder_plugins_url($url)
    {
    $url = get_template_directory_uri().”/config-templatebuilder/avia-template-builder/”;
    return $url;
    }

    add_filter(‘avia_builder_plugins_url’,’avia_builder_plugins_url’);

    //check if the builder was included via plugin. if not include it now via theme
    if(!avia_builder_plugin_enabled())
    {
    require_once( dirname(__FILE__) . ‘/avia-template-builder/php/template-builder.class.php’ );

    //define( ‘AVIA_BUILDER_TEXTDOMAIN’, ‘avia_framework’ );

    $builder = new AviaBuilder();

    //activates the builder safe mode. this hides the shortcodes that are built with the content builder from the default wordpress content editor.
    //can also be set to “debug”, to show shortcode content and extra shortcode container field
    $builder->setMode( ‘safe’ );

    //set all elements that are fullwidth and need to interact with the section shortcode. av_section is included automatically
    $builder->setFullwidthElements( array(‘av_revolutionslider’, ‘av_layerslider’ ,’av_slideshow_full’, ‘av_fullscreen’, ‘av_masonry_entries’,’av_masonry_gallery’, ‘av_google_map’, ‘av_slideshow_accordion’, ‘av_image_hotspot’, ‘av_portfolio’, ‘av_submenu’, ‘av_layout_row’, ‘av_button_big’,’av_feature_image_slider’) );
    }

    in reply to: Events Countdown Widget Bug #700875

    So, what ended up being the solution? I’m experiencing the same issue because I currently have an event happening, but would like to promote my next upcoming one. But the counter is invisible.

    Is there a way to select which event can be reflected in countdown?

    in reply to: Image Not Loading in Media >> Add New #693348

    It looks like it’s working for now! Just needed time overnight to read the php and ini. Thanks for your help!

    Jessica

    in reply to: Image Not Loading in Media >> Add New #693335

    Hi Basilis,
    Can you clarify what exactly you mean by “also the CHMOD of the uploads folder?”) so that I can clarify with my hosting provider?

    An update:
    I was on the phone with my hosting provider for an hour and we spent time doing a few things:

    We updated my max_execution time from 30 seconds to 200. We also increased the post max and max upload size (to 100 MB.) The upload is still not working. NOTE: I am not receiving an errorr, bu. The progress bar goes to 100% and then, nothing. I switch over to the media library and it’s still the generic thumnail with the file name.

    Is that what you’re referring to with limitations? Because it seems if we’ve hit all these, we should be in the clear.

    Thank you,
    Jessica

    in reply to: Enfold Church Demo not Importing #691027

    It worked! I’m all set.

    in reply to: Enfold Church Demo not Importing #691021

    Jordan, sorry this is the code I’m dropping in that you sent. NO idea how it shortened before:

    define('WP_MEMORY_LIMIT', '256M');

    Same error.

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