CP-Support

Forum Replies Created

Viewing 15 posts - 586 through 600 (of 632 total)
  • Author
    Posts
  • in reply to: Moved: Footer Menu #312

    CP-Support
    Keymaster
    Post count: 1282

    Because the footer menu uses WordPress’ native wp_nav_menu() function, you can create your own custom menu in dashboard.

    NOTE: For future support requests please add a new thread for each different issue. Thanks.

    in reply to: Translation #310

    CP-Support
    Keymaster
    Post count: 1282

    The footer menu uses WordPress’ native wp_nav_menu() function, so you can create your own custom menu in dashboard. This gives you total control of which and how many links are displayed.

    NOTE: For future support requests please add a new thread for each different issue. Thanks.

    in reply to: Menu #307

    CP-Support
    Keymaster
    Post count: 1282

    In the theme demo WordPress’ default menu is used, without problems.

    I really don’t know what could be wrong without taking a look. Please provide a link.

    in reply to: Picture caption #303

    CP-Support
    Keymaster
    Post count: 1282

    You’re welcome.

    in reply to: Picture caption #301

    CP-Support
    Keymaster
    Post count: 1282

    For some reason although width="300" is specified to [caption id="attachment_49" WordPress generates a 310px width for the container div of the image and the caption stretches to fit 310px. The image is a 300px thumbnail, and thus the display issue appears.

    To fix, add this in style.css:

    .wp-caption-text {
        margin-right: 10px;
    }
    
    @media screen and (max-width: 420px) {
    .wp-caption-text {
        margin-right: 0;
    }
    }
    

    Further testing will be completed.

    in reply to: Image gallery password protected? #300

    CP-Support
    Keymaster
    Post count: 1282

    This does not qualify as a support question. This is customizing, there is plenty information on the internet for password protecting. Any customization is your responsibility and we cannot be held reliable for any inconveniences that may occur.

    in reply to: Contact Options #299

    CP-Support
    Keymaster
    Post count: 1282

    To add any options other than those provided, you have to manually modify contact.php. If you want to add the fax field in the dashboard too, you will have to additionally modify theme-options.phtml found in the “includes” folder.

    in reply to: Moved: Solomon Font included #293

    CP-Support
    Keymaster
    Post count: 1282

    Hi,

    You don’t have to buy the font, it is included in the theme and it’s working.

    Note: Please post a new topic with your question/issue, do not reply to an existing one. Thank you.

    in reply to: The main frame and subframe in photo albums #288

    CP-Support
    Keymaster
    Post count: 1282

    You’re welcome.

    in reply to: The main frame and subframe in photo albums #275

    CP-Support
    Keymaster
    Post count: 1282

    Hi,

    If you use Google Chrome or Firefox, use the built-in dev tools: right click on the element you want to customize and then click on “Inspect element” to see the css classes/styles used (see attached screenshot as example with album cover css class).

    All the styles are located in style.css file.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Translation #271

    CP-Support
    Keymaster
    Post count: 1282

    Sorry about this, we will update the file with the form. You will find the words to translate in includes > contact.phtml
    The text is included like this:
    placeholder="<?php _e('text to be translated', 'kindergarten');?>"

    There are 4:
    placeholder="<?php _e('Your Message', 'kindergarten');?>" on line 5
    placeholder="<?php _e('Your Name', 'kindergarten');?>" on line 8
    placeholder="<?php _e('Your Email', 'kindergarten');?>" on line 11
    value=" <?php _e('SEND MESSAGE', 'kindergarten');?>" on line 18

    The gallery is a plugin, so go to plugins > cp-image-gallery > views > main.phtml and the “All albums” text is on line 2:
    <li><a href="#" class="sel" id="album_filter_all" onclick="switchAlbum('all');return false;">All Albums</a></li>

    As for the blog page, you can name it any way you want there is no need for translation (see also the documentation for this).

    To hide post meta add this line in style.css:
    .entry-meta { display: none; }

    in reply to: Contact Form not working #267

    CP-Support
    Keymaster
    Post count: 1282

    Hi,

    I cannot know what is wrong with it. Please provide a link so I can take a look.

    in reply to: Umlauts in Font #265

    CP-Support
    Keymaster
    Post count: 1282

    Hi,

    The main body text font – Solomon Normal – fully supports German diacritics (all the umlauts), but the titles font – BD Cartoon Shout – does not.

    As a workaroud, css can be modified so that the titles can be displayed with the same font as the body text – Solomon Normal.

    in reply to: Logo & Side Photo #263

    CP-Support
    Keymaster
    Post count: 1282

    The customizations should be handled by a developer/designer with html/css/basic php knowledge. We do not currently offer customization services.

    As advice, one of the images should be kept and used for the logo, the other one should be deleted from the source code of the front page and from the dashboard. Some css modifications are also necessary to rearrange the page and correct any possible erratic displayed elements after the deletion of one of the images.

    If you want comments disabled by default on all the pages, go to Settings > Discussion and uncheck “Allow people to post comments on new articles”. Otherwise comments can be disabled on a per-page basis by clicking on Pages > All Pages, click “Quick edit” on the page you want and uncheck “Allow Comments”.

    in reply to: Logo & Side Photo #260

    CP-Support
    Keymaster
    Post count: 1282

    Hi,

    To remove the left image go to Appearance > Theme Options > CSS Styles and write there this:

    #bouquet { display:none; }

    Without the left image, the website will look strage because of the alignment, so make sure you also center the layout (see attached screenshot).

    The bride and groom images cannot simply be replaced with a logo, because they are 2 separate images. Adding a logo would require html/css modifications.

    Attachments:
    You must be logged in to view attached files.
Viewing 15 posts - 586 through 600 (of 632 total)