CP-Support

Forum Replies Created

Viewing 15 posts - 376 through 390 (of 632 total)
  • Author
    Posts
  • in reply to: Google map location #1158

    CP-Support
    Keymaster
    Post count: 1282

    The Contact page is set to display on the map the address you input in the dashboard.

    I inputted your address on Google Maps directly, and is not right. See here: https://www.google.ro/maps/place/ulitsa+%22169-ta%22+16,+1797+Sofia,+Bulgaria/@42.6605275,23.3669461,17z/data=!3m1!4b1!4m2!3m1!1s0x40aa8681d653a489:0x7900fef4a617cd43?hl=en That’s why it shows like this on the Contact page. I’m sorry, but in this case there’s nothing we can do, as it is not a problem with our theme, is a Google Maps issue.

    I will however mention something that may work (but please note that this was not tested, so no guarantees):

    The javascript that displays the maps (gmaps.js found in the “includes” folder) displays the address you input in the dashboard, but it has a fallback to display the coordinates you input in googlemaps.js:

    if (options.center) {
        parameters.push('center=' + options.center);
        delete options.center;
      }
      else if (options.address) {
        parameters.push('center=' + options.address);
        delete options.address;
      }
      else if (options.lat) {
        parameters.push(['center=', options.lat, ',', options.lng].join(''));
        delete options.lat;
        delete options.lng;
      }

    In the source code the address is located in <span id="address"> in contact.php on line 25. Try to delete the id id="address" and see if the maps will display the coordinates.

    Please note that – as stated on homepage – support does not cover customizations. Modifying the theme to display coordinates instead of address is a customization, so I cannot offer any other help with this, nor with other customizations, as I already offered more than is covered by support.

    in reply to: Google map location #1156

    CP-Support
    Keymaster
    Post count: 1282

    Hi,

    Please provide a link to your website so we can check the address ourselves.

    in reply to: How to remove Home page slider #1153

    CP-Support
    Keymaster
    Post count: 1282

    Hi.

    Add this in style.css:

    #featured { display: none; }
    #content-homepage { margin-top: 250px !important; }

    Please note that – as stated on homepage – support does not cover customizations. This is a customization, so I cannot offer any other help with this nor with other customizations, as I already offered more than is covered by support.

    in reply to: Add text to Gallery page #1150

    CP-Support
    Keymaster
    Post count: 1282

    The theme update was just approved at ThemeForest. Please re-download and update the theme to the latest version (1.8). It includes the option to add content/text from Dashboard on the Gallery page.

    in reply to: Homepage & Gallery #1144

    CP-Support
    Keymaster
    Post count: 1282

    Try setting the max number in Settings > Reading (Instellingen > Lezen). If it does not work, than some php modifications would be necessary to the loop in front-page.php.

    in reply to: Homepage & Gallery #1140

    CP-Support
    Keymaster
    Post count: 1282

    The problem is that the home page has been designed to have content added through widgets and dashboard. It was not designed for displaying the latest blog posts, the homepage loop only displays the content inputted from dashboard:

    <?php while (have_posts()) : the_post(); ?>
    
    <?php if ($post->post_content == "") : ?>
    
    <?php else : ?>
    
    <section class="col-lg-7 col-md-12 col-sm-12 clearfix" id="text-homepage">
        <?php the_content(); ?>
    </section>
    
    <?php endif; ?>
    
    <?php endwhile; ?>

    So, like I previously mentioned, displaying the posts cannot be achieved without modifying the template source code.
    For testing, I temporarily modified the homepage source, and now the posts are displayed. Let me know if this is ok. You can keep the modifications I made, or revert to the original version.

    The modification that I made was the following:

    in front-page.php I replaced this:

    <?php /* The loop */ ?>
    <?php while (have_posts()) : the_post(); ?>
    
        <?php if ($post->post_content == "") : ?>
    
    <?php else : ?>
    
        <section class="col-lg-7 col-md-12 col-sm-12 clearfix" id="text-homepage">
            <?php the_content(); ?>
        </section>
    
    <?php endif; ?>
    
    <?php endwhile; ?>
    

    with this:

    <section class="col-lg-7 col-md-8 col-sm-12" role="main" style="margin-bottom: 30px;">
        <div class="content-bg">
    
            <?php if ( have_posts() ) : ?>
    
                <?php /* The loop */ ?>
                <?php while ( have_posts() ) : the_post(); ?>
                    <?php get_template_part( 'content', get_post_format() ); ?>
                <?php endwhile; ?>
    
            <?php kindergarten_paging_nav(); ?>
    
            <?php else : ?>
                <?php get_template_part( 'content', 'none' ); ?>
            <?php endif; ?>
    
            <div class="clearfix"></div>
        </div>
    </section>

    Please note that this means that the text inputted from dashboard will no longer be displayed, only the posts will be displayed.

    Also please note that this is a customization, and it’s not covered by support (see disclaimer on homepage), so I cannot offer further help with this.

    in reply to: Homepage & Gallery #1137

    CP-Support
    Keymaster
    Post count: 1282
    This reply has been marked as private.
    in reply to: Homepage & Gallery #1135

    CP-Support
    Keymaster
    Post count: 1282

    I cannot really help with only a partial screenshot, I have to see what was done in order to give a proper answer. I have to see what was done to display the posts and what shows and what not. If it’s in maintenance mode please provide access credentials to dashboard (use “Set as private reply” option).

    In WordPress the blog posts page template is index.php, while the homepage has its own dedicated template front-page.php. WordPress uses front-page.php as homepage regardless of what page is set in Settings > Reading. So you cannot display posts on front-page.php without modifying the source or by renaming it and use another template for homepage.

    in reply to: Homepage & Gallery #1129

    CP-Support
    Keymaster
    Post count: 1282

    Please provide a link to your website so I can take a look.

    Did you display the 5 posts in a widget, or manually modified the page template source code? I cannot offer an answer without any details.

    The gallery pictures are stored in WordPress’s uploads folder.

    in reply to: Modify Contact Form #1127

    CP-Support
    Keymaster
    Post count: 1282

    Hi,

    Yes, the contact form is contact.phtml and the contact page is contact.php.

    in reply to: Modify Contact Form #1123

    CP-Support
    Keymaster
    Post count: 1282

    Hi,

    Please note that this is a customization, not an issue/problem with the theme. You may modify the theme as needed, but – like it’s stated here on homepage – support does not cover customizations, so any additions or modifications fall into client’s responsibility. We have no immediate plan to include phone option in future updates, because it’s not a popular feature (for privacy reasons, not everybody likes to be forced to supply their phone number) and because there was no previous demand. Rest assured that those who prefer to be contacted by phone will mention their phone number in the message or contact you by phone directly, not by the online contact form.

    in reply to: Add text to Gallery page #1120

    CP-Support
    Keymaster
    Post count: 1282

    Currently there is no option. But a theme update is planned for this week and we will include this option in the update.
    The update will be submitted for approval at ThemeForest on Thursday and it usually takes 1-2 days to be approved, depending on how busy the reviewers are.

    in reply to: Rename HOME menu #1116

    CP-Support
    Keymaster
    Post count: 1282

    No problem. A solution was found. You can use custom menu to change the page label that appears in the menu. Follow these steps (see attached screenshot):

    1. Go to Appearance > Menus;
    2. Click on “View all” to see all pages. Make sure you add all the pages you want by selecting them and clicking “Add to menu”;
    3. Click on the arrow on the right side of “Home” to reveal page options;
    4. Change the Navigation Label from “Home” to whatever you see fit;
    5. In the Menu Settings check all three options: “Automatically add new top-level pages to this menu”, “Header Menu” and “Footer Menu” to make the menu visible on the website;
    6. Click “Save Menu”.

    You can also re-order the pages by drag-and-drop if needed.

    The next update was not yet fully been planned, but it will surely include Retina-ready social icons and Retina-ready optimizations.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Rename HOME menu #1114

    CP-Support
    Keymaster
    Post count: 1282

    Please provide us a link to your website and access to the dashboard so we can investigate (use “Set as private reply” option when posting sensitive data).

    in reply to: Rename HOME menu #1110

    CP-Support
    Keymaster
    Post count: 1282

    The name that appears in the menu is the page name. So modify the page name.

Viewing 15 posts - 376 through 390 (of 632 total)