We Create Web Designs
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Elisium] Slider image…a definitive size?All the display editing is done in the CSS. You will need to tweak both the slider image and also the caption (which is the content that appears in the left.
Forum: Themes and Templates
In reply to: [Elisium] "Latest Articles" at bottom of Home Page/IndexYou need to go to the index.php template file and there you’ll be able to change the code to show the number of articles. It’s not a CSS thing, it’s in the .php
<?php $recent = new WP_Query(“showposts=4”); while($recent->have_posts()) : $recent->the_post();?>
Change the number of showposts from 4 to 5
So, you’ll have
<?php $recent = new WP_Query(“showposts=5”); while($recent->have_posts()) : $recent->the_post();?>
Forum: Themes and Templates
In reply to: [Elisium] Main logo/INDEX page bannerPlease send your login details at contact [at] wecreatewebdesigns [dot] com. I can take a look for you. It usually works properly for us, but I can see if there’s anything wrong on your installation.
Forum: Themes and Templates
In reply to: [Elisium] Main Features (less than 4?)You can go to APPEARANCE / EDITOR / index.php and delete the feature you don’t wish to show. You will need to also alter the code and change “quatro” to “triple” for instance and set a width of 33% for it.
Forum: Themes and Templates
In reply to: [Elisium] Slider image…a definitive size?We have intended the image to be 465px wide and 320px high. Of course, you can use other sizes and tweak the style.css for this, to accommodate them.
Hello, Gregory.
Right now you can change the sliders number via the template, by deleting or adding new ones.
We’ll keep your feedback in mind though for a future version. Thank you for the input.
Forum: Themes and Templates
In reply to: [Elisium] alternate menu for logged in usersYou place the code where you want it to appear
Forum: Themes and Templates
In reply to: [Elisium] Original fontsYou can re-install the theme. Or just copy the initial code from the style.css you downloaded in the theme into the one you’re now using.
Forum: Themes and Templates
In reply to: [Elisium] Image SliderCan you please link me to the site?
You can change it in the style.css (set various paddings or margins for the images)Forum: Themes and Templates
In reply to: [Elisium] alternate menu for logged in usersHaven’t tried this, but maybe it’s something like:
<?php
if ( is_user_logged_in() ) {
echo ‘HERE YOU PLACE ONE MENU FOR THE LOGGED IN USERS’;
} else {
echo ‘ANOTHER MENU FOR THE OTHERS’;
}
?>Forum: Themes and Templates
In reply to: [Elisium] image in the full articleOpen your post and, in the content section, add an image (please see the tutorial: https://codex.www.ads-software.com/Inserting_Images_into_Posts_and_Pages )
Forum: Themes and Templates
In reply to: [Elisium] Could be compatible with qTranslate?Good idea, thank you for letting us know.
Forum: Themes and Templates
In reply to: [Elisium] image in the full articleYou want to show it as small as it appears there? or a bigger size? If it’s the first case, you’ll need to add a code ‘bit’ into a theme file, if it’s the second case, you’ll just have to upload the image in the post content.
Forum: Themes and Templates
In reply to: [Elisium] Could be compatible with qTranslate?We’ll need to work this out in a future upgrade. Thank you for letting us know.
Forum: Themes and Templates
In reply to: [Elisium] image in the full articleThe read more link leads you to the entire article page. If you want to show the entire article in the home page (instead of the excerpt as we have now, you need to replace <?php the_excerpt(); ?> with <?php the_content(); ?>. I don’t recommend it though, since it would make your homepage huge (the entire articles appearing instead of a short excerpt). If you need to show an image though, please upload one in your article and then set it as featured image. The theme supports featured images. More about them: https://codex.www.ads-software.com/Post_Thumbnails