Forum Replies Created

Viewing 30 posts - 391 through 420 (of 484 total)
  • Author
    Posts
  • in reply to: Mobile Site Rotation Problem #228205

    Hey Devin,

    In my case, as I’m sure you noticed, there is no next slide just a static image.

    I won’t hold you to this but I imagine you will have some estimate. Do you have any idea when the next update will be released? Just curious if you have a general projection of time frame.

    Thanks, Jas

    in reply to: Mobile Site Rotation Problem #228106

    Hi Ismael,

    Yes I have it set to responsive layout 1210px. See here..
    https://dl.dropboxusercontent.com/u/1049926/Screen%20Shot%202014-02-23%20at%201.27.19%20AM.png

    Also here is a video showing the issue.
    [video src="https://dl.dropboxusercontent.com/u/1049926/IMG_0083.mp4" /]

    Does this issue exist on an Android? Windows phone? Do you have access to these? do any of the developers have access to an iPhone?

    This really shouldn’t be doing this. All mobile site I have seen have worked like this one with the banner adjusting properly with rotation.
    http://www.ozy.com/wildcard/why-the-pictures-from-kiev-this-week-were-everywhere/6694.article

    Anything I can do to help. Please let me know. I will be happy to help troubleshoot.

    Best, Jas

    in reply to: Blog Subscriptions Submit Button Font #227744

    I figured it out. I needed all this to change the hover fade, font type, font color, font weight and border radius of the button. I closed the case myself! Perhaps this will be helpful to someone.

    .main_color #submit, .main_color input[type='submit'] {
     border-radius: 2px!important;
     color: #A9A9A9;
     font-weight: 100!important;
     font-family: 'Open Sans', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      -ms-transition: all 0.3s ease-out; 
      -moz-transition: all 0.3s ease-out; 
      -webkit-transition: all 0.3s ease-out; 
      -o-transition: all 0.3s ease-out; 
      transition: all 0.3s ease-out;
    } /*Subscribe*/
    in reply to: Blog Subscriptions Submit Button Font #227707
    This reply has been marked as private.
    in reply to: mobile site navigation button #225863

    Yes I added it yesterday and it works perfectly. Thank you!

    in reply to: mobile site navigation button #225512

    Hi Yigit,

    I’m using the Enfold Child theme so I added the below code. I already had a 10, 1 so I added a 10, 2.
    Also, you mentioned functions-enfold.php. I think you meant functions.php. I did not find any of this in functions-enfold.php.

    Thank you for your help! Jas

    add_filter('avf_default_icons','avia_replace_close_icon', 10, 2);
    
    function avia_replace_close_icon($icons)
    {
    $icons['close']	 = array( 'font' =>'entypo-fontello', 'icon' => 'ue8a5');
    return $icons;
    }
    in reply to: Head With Social Media and Large Logo #223337

    Thank you!

    For those users who may be confused, register-admin-options.php does NOT need to be edited to achieve an icon change in the header. As you can see in my post here http://goo.gl/zwuPVa understanding this can be a bit confusing.

    Directions are:
    1. Go to fontello.com and download fonts via a zip file
    2. Add fonts to Enfold theme
    3. Edit functions.php

    That’s it.

    Thank you for all your help! Case closed, Jas

    in reply to: Head With Social Media and Large Logo #223330

    Thank you I’ll try it and get right back to you, Jas

    in reply to: Head With Social Media and Large Logo #221953
    This reply has been marked as private.
    in reply to: Head With Social Media and Large Logo #221647

    Secondly the moment I add this code and put a function.php in the child theme folder my site goes down. Below is everything in the functions.php When I added this, the site went down completely and I had to delete it to get the site back up. I did not edit the register-admin-options.php yet.

    This tells me that there is either bad code here or that I am applying it incorrectly. Per my understanding, the purpose of the child functions.php is to be applied “in addition to” the parent functions.php. I need to know of I did this incorrectly below or if there is perhaps some bad code there.

    I’m really out of ideas here guys. I’m going on two weeks now. Urgent.

    Thanks for your help, Jas

    <?php
    
    /*
    * Add your own functions here. You can also copy some of the theme functions into this file. 
    * WordPress will use those functions instead of the original functions then.
    */
    
    /*Apple*/
    
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    function avia_add_custom_icon($icons)
    {
    $icons['apple']	 = array( 'font' =>'social-fontello', 'icon' => 'ue803');
    return $icons;
    }
    
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
    function avia_add_custom_social_icon($icons)
    {
    $icons['Apple'] = 'apple';
    return $icons;
    }
    
    /*Yelp*/
    
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    function avia_add_custom_icon($icons)
    {
    $icons['yelp']	 = array( 'font' =>'social-fontello', 'icon' => 'ue800');
    return $icons;
    }
    
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
    function avia_add_custom_social_icon($icons)
    {
    $icons['Yelp'] = 'yelp';
    return $icons;
    }
    in reply to: Head With Social Media and Large Logo #221643

    Peter,

    I’m getting really confused. Here you say to edit the register-admin-options.php
    https://kriesi.at/support/topic/adding-custom-social-icons/#post-170356

    Ismael says it can be edited here
    https://kriesi.at/support/topic/head-with-social-media-and-large-logo/#post-218323

    In your last message above you say “The register-admin-options.php is not editable”

    Did you mean to say the PARENT register-admin-options.php CAN be edited but it needs to be left in the parent folder?

    in reply to: Head With Social Media and Large Logo #220845

    Bump ;)

    in reply to: Layout Builder Image Resize Problem #220453

    Haven’t forgotten. I’ll get back to you with the results!

    in reply to: Head With Social Media and Large Logo #220452

    2 Questions: Re: social icon header

    FIRST QUESTION

    I understand how to edit parent files but in a child theme I think this will be a little different. I’m not sure how to append child theme files to make them compatible with parent theme files.

    I understand I am editing functions.php and register-admin-options.php.

    Am I including the full original content of the Enfold Parent files (functions and register-admin-options), making the edits, then copying to Enfold Child folder?

    OR am I ONLY putting the edits in the Enfold Child theme files? Like this.. (I’m sure this is wrong) https://dl.dropboxusercontent.com/u/1049926/functions.png

    The reason I am asking is because in the case of the functions.php the site loads both the parent and the child so the child would amend the parent file.

    However, the the case of the register-admin-options.php the child would completely replace the parent.

    It would seem that editing the two child files would be different approaches to each since the two files are treated differently by the site.

    SECOND QUESTION

    SO, after you clarify the above, am I putting these two files in the root of the child theme folder?

    Almost there! Thank you for responding to my urgent request on this, Jas

    PLANNED EDITS

    functions.php

    'apple' => array( 'font' =>'social-fontello', 'icon' => 'ue803'),
    'crown' => array( 'font' =>'social-fontello', 'icon' => 'ue801'),
    'foursquare' => array( 'font' =>'social-fontello', 'icon' => 'ue802'),
    'yelp' => array( 'font' =>'social-fontello', 'icon' => 'ue800'),

    register-admin-options.php

    'Apple'   => 'apple',
    'Foursquare'   => 'crown',
    'Foursquare'   => 'foursquare', /*I will have two icons titled Foursquare*/
    'Yelp'   => 'yelp',
    in reply to: Head With Social Media and Large Logo #220441

    Josue, Peter, Ismael, Yigit!

    I applied the child theme. Went very smoothly for the most part. Here are the results.

    1. Import Enfold Child Theme

    2. Enfold > Theme Options > Import Parent Theme Settings

    3. Appearance > Menus and reset the Menu locations (might want to add this to your “Using a Child Theme” page)

    4. Refreshed the site in the browser twice

    5. Quick CSS code did not load and site returned to default before Quick CSS was applied. However, when I checked the Quick CSS the code was there. So, I put the cursor at the bottom of the Quick CSS window hit the space bar and clicked “Save All Changes” Hmmm. Is this normal or did I just encounter a glitch?

    6. Refreshed the site in the browser and all CSS was applied.

    7. Icy Social Plugin was missing from the footer. Appearance > Widgets then dragged it back in. It applied as before successfully.

    Everything seems to be back to normal. If I run into any issues I’ll report here. I am moving on to the social header now. Get back to you soon.

    Continued appreciation, Jas

    in reply to: Head With Social Media and Large Logo #219883

    Ah ok,

    So this. Easy. Thanks
    https://dl.dropboxusercontent.com/u/1049926/Menu.png

    I’m going to do the following then post my experience:

    1. Create a child theme

    2. Upload fonts to the Iconfont manager.

    3. Create functions.php child

    4. Create register-admin-options.php child

    5. Add the icon to the header.

    Thanks! Jas

    in reply to: Head With Social Media and Large Logo #219874

    Hi Peter,

    Great so just do this again right? Since I don’t have much yet, it looks like it will take just a minute.
    https://dl.dropboxusercontent.com/u/1049926/Menu%20Location.png

    Thanks, Jas

    in reply to: Head With Social Media and Large Logo #219835

    Thanks Peter for answering my urgent request,

    Last question before I proceed:

    I notice it says “theme specific plugins” might have to be reset. I’m not sure I understand this. What would be the difference between a regular plugin and a “theme specific plugin”? What plugins would be specific to Enfold theme? I have about 12 plugins.

    Anything else I should watch out for??

    Thanks for your time, Jas

    in reply to: nowrap text #219830

    THANKS Ismael!

    I also added this to keep the astericks from wrapping on the submit comment page on the mobile site. I noticed the asterisks were below “Name*” and “Email*” instead of inline.

    #commentform label {
     width: 120%;
    }

    Gracias! Jas

    in reply to: nowrap text #219297
    This reply has been marked as private.
    in reply to: Search Submit Button #219122

    Hi Yigit,

    That solved it. I need both to accomplish it:

    .avia_mobile #top #searchsubmit, .avia_mobile .ajax_load {
    height: 42px;
    }

    and

    #top #searchsubmit, .ajax_load {
    height: 42px !important;
    }

    Thank you! Case closed!

    in reply to: Head With Social Media and Large Logo #218754

    Hi guys,

    I read the WordPress page on child themes and watched the video. Thank you.

    Before I follow the directions in the video, I need to be completely clear on what to expect. I don’t want any surprises. I have an important question that is not answered in the video and I have not found answers for in the forum.

    1. If I update the parent theme, functions.php (child theme) is loaded to the site in addition to the functions.php (parent theme). The functions.php file is an exception in the way child themes are treated…

    2. So, this is not true of other php files such as register-admin-options.php. It seems in this case, the register-admin-options.php (child theme) will totally replace the register-admin-options.php (parent theme).

    3. My question is, if this is true, what happens if…. an Enfold theme update includes an updated register-admin-options.php file? If the child theme is replacing that then it seems I would never get the updated register-admin-options.php file?

    4. As I understand it, this would create the same problem I am trying to avoid and I’d have to manually update the file. Am I missing something?

    I really need to understand this in detail. Please answer as completely as you can and then I’ll follow the directions in the video and get back to you with my experience.

    Thank you, Jas

    Urgent

    • This reply was modified 10 years, 9 months ago by Jasmer.
    in reply to: Button and Field Inconsistency #218750

    Thanks Josue

    Problem 2: solved. Thank you!

    Problem 1: I solved the rest of it with this:

    #top input[type="text"] {
    border-radius: 2px;
    }

    Case closed!

    in reply to: Search Submit Button #218725

    Hmm. I tried that. Doesn’t work. I also added !important and that didn’t work either.

    Best, Jas

    in reply to: Urgent Site Problem #218552

    I’m back up. And yes that would have been quicker now that I’ve had a good nights rest and can think clearly. Ha.

    I hit restore in my host settings and it took 2 minutes. The guys at http://www.getflywheel.com are the best WordPress host I’ve encountered. I emailed them at 5am and 5 minutes later I had a response. That’s service!

    As soon as my site went backup the Jetpack plugin notified me via email.

    WARNING: WP Retina 2x is a great plugin but DO NOT click “Delete all 2x files”. They should have a warning on that. I was under the assumption it was limited to non-theme files.

    Consider this resolved. Thanks! Jas

    • This reply was modified 10 years, 9 months ago by Jasmer.
    in reply to: Button and Field Inconsistency #218549

    Re: 1. I fixed the “Post Comment” button corners with this:

    input#submit {
     border-radius: 2px;
    }

    I fixed the Comment Field with this:

    textarea#comment {
    border-radius: 2px;
    }

    Still can’t figure out how to make the top three form fields rounded corners.

    Thanks, Jas

    • This reply was modified 10 years, 9 months ago by Jasmer.
    in reply to: Urgent Site Problem #218424

    I’m restoring from a backup perhaps that will solve it. However, for future reference if you can tell me how to restore those files that you see missing I’d greatly appreciate it.

    Best, Jas

    in reply to: Urgent Site Problem #218423
    This reply has been marked as private.
    in reply to: Urgent Site Problem #218422

    Ok it looks like I have found the issue. The plugin WP Retina 2x must have deleted about 22 2x files. Do you know how I can get those missing files and put them back via FTP? Where would I get the files? Thank you!

    in reply to: Urgent Site Problem #218419
    This reply has been marked as private.
Viewing 30 posts - 391 through 420 (of 484 total)