New Topic

StartupWP

Forum Replies Created

Viewing 25 posts - 626 through 650 (of 893 total)
  • Author
    Posts
  • in reply to: Customization (My Website) #900

    StartupWP
    Keymaster

    1. Sorry to say it, it now looks like http://prntscr.com/1bs11f isn’t loading or the image is missing?

    2. Unfortunately no, don’t think it would be easy without this plugin or simply using CSS. You might be able to contact the developer(s) directly and possible hire them to setup the plugin for you:

    http://www.designchemical.com/

    in reply to: Contact Form language #899

    StartupWP
    Keymaster

    Sounds good.

    in reply to: Customization (My Website) #896

    StartupWP
    Keymaster

    1. Looks like you’ve put your site into maintenance/under construction mode again. If you open it up we should be able to write up the CSS.

    2. Not sure this is something we’d know how to address. You should be able to get better information here:

    http://wordpress.org/support/plugin/jquery-mega-menu

    in reply to: Contact Form language #895

    StartupWP
    Keymaster

    For more advanced features outside of what the theme offers, we’d recommend checking out a plugin like:

    http://wordpress.org/plugins/contact-form-7/

    in reply to: Menu Issues #892

    StartupWP
    Keymaster

    It’s likely not theme-related either, unless you’ve made any customizations that may have broken something?

    It sounds like either the WordPress install is out-dated or has become corrupt.

    Please check under Dashboard > Updates in your WP admin and make sure everything is up-to-date.

    Even if WordPress is up-to-date, go ahead and click “Re-install Now”.

    in reply to: Menu Issues #890

    StartupWP
    Keymaster

    Make sure to set your menu custom:

    https://startupwp.com/topic/setting-a-custom-menu/

    in reply to: Customization (My Website) #888

    StartupWP
    Keymaster

    It doesn’t matter where it appears under Appearance > Widgets, this is just the stacking order in the admin, it does not correlate to the live site. It’s shown first because the child theme loads first.

    Other than that, you can pretty much move the <div id="footer-sidebar"> code wherever you want within the body.

    Perhaps you’re having a styling issue that we can help with?

    in reply to: Customization (My Website) #886

    StartupWP
    Keymaster

    Okay, here you go:

    https://startupwp.com/downloads/support/startuppro-child%28uendi%29.zip

    Just tested and it’s working.

    We’ve left a blank line before and after the widget code in footer.php, so you know what chunk of code to move around if you want different placement.

    in reply to: Customization (My Website) #884

    StartupWP
    Keymaster

    Okay, please share the entire contents of your child theme’s stylesheet, functions.php and footer.php, and anything else you might have customized. You can use http://pastebin.com/ if it’s easier.

    Then we’ll see if we can make sure everything is organized correctly in one neat child theme for you.

    in reply to: Customization (My Website) #880

    StartupWP
    Keymaster

    Looks like all it needed was the closing ?>, so:

    <?php
    add_action( 'widgets_init', 'startup_widgets_init_child' );
    function startup_widgets_init_child() {
    register_sidebar( array (
    'name' => __('Footer Widget Area 2', 'startup' ),
    'id' => 'footer-widget-area-2',
    'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
    'after_widget' => "</li>",
    'before_title' => '<h3 class="widget-title">',
    'after_title' => '</h3>',
    ) );
    }
    ?>

    Here’s a full working example:

    https://startupwp.com/downloads/support/startuppro-child%28adding-new-widget-area%29.zip

    Remember, since you already have a child theme installed, you cannot simply install this new one. Make sure to combine all your child theme customizations into one child theme and upload via FTP.

    in reply to: Contact Form language #879

    StartupWP
    Keymaster

    You’re welcome and happy to hear it. :)

    in reply to: Blank Pages #878

    StartupWP
    Keymaster

    Under Appearance > Themes please double-check whether you have the free or pro version activated. The Blank template is only in StartupPro, just tested and it’s still working. Also, there’s nothing in the new update that should have any effect on custom templates.

    There was a recent WP update that could possibly be conflicting with one of your plugins. Please try deactivating all plugins and clearing all caches.

    in reply to: Customization (My Website) #874

    StartupWP
    Keymaster

    1. That’s correct and apologies, even we learned something new about child theming :). So here’s what all you’ll want in your child theme functions.php so far:

    <?php
    add_action( 'widgets_init', 'startup_widgets_init_child' );
    function startup_widgets_init_child() {
    register_sidebar( array (
    'name' => __('Footer Widget Area 2', 'startup' ),
    'id' => 'footer-widget-area-2',
    'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
    'after_widget' => "</li>",
    'before_title' => '<h3 class="widget-title">',
    'after_title' => '</h3>',
    ) );
    }

    And that’s all, we’ve now registered a new widget area.

    Next, wherever you want that widget area to appear, you’ll copy over that file (in this case you do want to duplicate the whole file from the parent theme) and then add:

    <div id="footer-sidebar">
    <?php if ( is_active_sidebar('footer-widget-area-2') ) : ?>
    <div id="fsidebar" class="widget-area">
    <ul class="sid">
    <?php dynamic_sidebar('footer-widget-area-2'); ?>
    </ul>
    <div class="clear"></div>
    </div>
    <?php endif; ?>
    </div>

    And finally, you of course assign widgets to the widget area under Appearance > Widgets.

    2. Aah yes, http://prntscr.com/1az7r8 – See top-left, you’ve assigned the footer menu on the dropdown, but haven’t yet assigned the main menu in the dropdown option, then make sure to save.

    in reply to: Contact Form language #873

    StartupWP
    Keymaster

    You’ll just need to adjust the CSS a bit, copy and paste the following to the Custom CSS area in your theme options:

    #contact label {
      width: 100px;
    }

    https://startupwp.com/topic/customizing-your-theme/

    Absolutely, you’ll continue to be able to update the parent theme without disturbance from the child theme.

    in reply to: Contact Form language #869

    StartupWP
    Keymaster

    Thank you, we’ve prepared a solution:

    https://startupwp.com/downloads/support/startuppro-child%28contact-form-translation%29.zip

    Download, install and activate like any other theme and then simply update your contact form shortcode from:

    [sp-contact]

    to:

    [sp-contact-child]

    in reply to: Customization (My Website) #868

    StartupWP
    Keymaster

    1. Make sure to make changes locally before uploading via FTP and always keep a vanilla copy of files on hand.

    You’ll want to download a fresh copy of the theme, unzip, grab the vanilla functions.php file and upload over the edited one.

    2. This may have something to do with the menu plugin you’re using. Can we see a screenshot of your Appearance > Menus settings please.

    in reply to: Contact Form language #865

    StartupWP
    Keymaster

    Okay, here are the translations. Leave anything that starts with $ the same and leave the HTML the same, but make any corrections you see that might be wrong with the translations and we can then see if we can create an easy solution for you. Thanks

    U dient uw naam in te voeren.
    
    Vul een geldig e-mailadres.
    
    Vul een geldig telefoonnummer in.
    
    Telefoonnummer kan alleen cijfers bevatten.
    
    U heeft een ongeldig e-mail adres, gelieve opnieuw te proberen.
    
    Vul een onderwerp.
    
    Gelieve een bericht in.
    
    Vul het controle nummer.
    
    U gefaald de menselijke test, probeer het opnieuw.
    
    Je hebt benaderd door $name met betrekking tot $subject.
    
    U kunt contact opnemen met $name op $email of $phone.
    
    E-mail Verzonden succes
    
    <p>Bedankt <strong>$name</ strong>, heeft uw bericht is ontvangen. We zullen snel contact met u op.</p><p><a href='javascript:history.go(0)'>Klik hier als u uw bericht bij te werken en opnieuw te verzenden.</a></ p>
    in reply to: Customization (My Website) #864

    StartupWP
    Keymaster

    1. This is something you’ll need to post here http://wordpress.org/support/plugin/jquery-mega-menu – Where the creator(s) of the plugin should be able to help you.

    2. Edit your menu under Appearance > Menus. Make sure to either delete out “Privacy Policy” from the menu or uncheck the box “Automatically Add New Top-level Pages”.

    Now for creating new widget areas:

    – You’ll need to first copy over functions.php from the parent theme to your child theme

    – Open it up and find:

    register_sidebar( array (
    'name' => __('Footer Widget Area', 'startup' ),
    'id' => 'footer-widget-area',
    'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
    'after_widget' => "</li>",
    'before_title' => '<h3 class="widget-title">',
    'after_title' => '</h3>',
    ) );

    – Simply duplicate below and change to say:

    register_sidebar( array (
    'name' => __('Footer Widget Area 2', 'startup' ),
    'id' => 'footer-widget-area-2',
    'before_widget' => '<li id="%1$s" class="widget-container %2$s">',
    'after_widget' => "</li>",
    'before_title' => '<h3 class="widget-title">',
    'after_title' => '</h3>',
    ) );

    – Now, copy over footer.php to the child theme, open it up and add wherever you want the widget area to appear:

    <div id="footer-sidebar">
    <?php if ( is_active_sidebar('footer-widget-area-2') ) : ?>
    <div id="fsidebar" class="widget-area">
    <ul class="sid">
    <?php dynamic_sidebar('footer-widget-area-2'); ?>
    </ul>
    <div class="clear"></div>
    </div>
    <?php endif; ?>
    </div>

    – You can now find it under Appearance > Widgets to add widgets to

    Repeat for any other widget areas you want to add.

    in reply to: Contact Form language #862

    StartupWP
    Keymaster

    What language are you translating into?

    in reply to: Customization (My Website) #859

    StartupWP
    Keymaster

    1. Use:

    footer {
      background: none repeat scroll 0 0 #000000;
      height: 30px;
      padding: 1px 0 65px;
    }
    footer a, #copyright {
      color: #888888;
      text-decoration: none !important;
      text-shadow: none !important;
    }

    2. Try utilizing the footer area under Appearance > Widgets.

    3. Hold tight, and we’ll get back to you with a solution for this.

    4. This might be something you’ll want to ask here as we’re not savvy to the plugin or how it works:

    http://wordpress.org/support/plugin/jquery-mega-menu

    “One more thing, is do I need to create anything on the page, like what you mention, create a page called All Category and set it to Grid Template…?”

    Nope, just leave the page content blank.

    in reply to: Contact Form language #858

    StartupWP
    Keymaster

    We’ll need to look into improving this.

    For now, you may be able to copy over contact.php from /scripts/ in the parent theme to a child theme and make your changes:

    https://startupwp.com/topic/child-theming/

    in reply to: Customization (My Website) #855

    StartupWP
    Keymaster

    Right there under Appearance > Menus, you can actually assign the footer menu to the footer from the dropdown option, the same way you can set the main menu.

    in reply to: Customization (My Website) #846

    StartupWP
    Keymaster

    1. This is what you’re wanting to do correct?:

    http://www.ryancollins.me/?p=1041

    If so, it should be able to be accomplished with only CSS.

    2. See shortcodes: https://startupwp.com/demo/shortcodes/

    You could start with:

    [sp-box-l]<h2>All Categories</h2>[/sp-box-l]

    But, it might be easier to just use a plugin:

    http://wordpress.org/plugins/category-grid-view-gallery/
    http://wordpress.org/plugins/list-category-posts/

    Actually, the best option may be to simply use the Grid page template. Remember how to edit a page and change the page template? You might simply create a page called “All Categories”, set it to the Grid template and then under Appearance > Widgets add multiple category widgets to the Grid area using a plugin like:

    http://wordpress.org/plugins/extended-categories-widget/

    in reply to: Customization (My Website) #844

    StartupWP
    Keymaster

    2. You could try:

    #menu-my-list-of-categories .sub-menu {
      display: none !important;
    }
    #menu-my-list-of-categories li:hover .sub-menu {
      display: block !important;
    }

    OR

    #menu-my-list-of-categories .sub-menu {
      display: none !important;
    }
    #menu-my-list-of-categories li:active .sub-menu {
      display: inline !important;
    }

    OR

    #menu-my-list-of-categories .sub-menu {
      display: none !important;
    }
    #menu-my-list-of-categories li:active .sub-menu {
      display: block !important;
    }

    3b. Looking at your screen (http://prntscr.com/19x7p9), see where the following line for example is:

    <p>Name *<br />

    Update to:

    <p>Name <span class="aster">*</span><br />

    4. Something like this?:

    .widget-container {
      min-height: 200px;
    }
    #menu-my-list-of-categories li a {
      border: 1px solid #666666;
      display: inline-block;
      margin: 3px 0;
      padding: 2px 5px;
      width: 80%;
    }

    All CSS provided can be placed in your child theme.

    in reply to: Featured Images are showing at full size #843

    StartupWP
    Keymaster

    You’re welcome.

Viewing 25 posts - 626 through 650 (of 893 total)