silvergenes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Want to add image between posts in Constructor Default themeThank you very much for getting back to me. I’ll try that.
Forum: Plugins
In reply to: AWeber Integration Plugin not connecting to AWeber regardless of selectionAppears to be impossible to do it this way.
Forum: Themes and Templates
In reply to: Constructor static home page now showing up twice in navbarI just came in to check things and found your message here but from the look of your site, you seem to have it sorted out. Sorry about the delay in responding to you. ??
Forum: Themes and Templates
In reply to: Constructor static home page now showing up twice in navbarI adjusted things in the header options and got what I needed. Didn’t need to change coding after all. Just added the new page to the ‘exclude’ list and voila!
Forum: Themes and Templates
In reply to: Renegade page showing ‘more’ tagHere is the solution suggested by Matt and it worked! On page.php change the code from:
<?php
if(is_single()) {
the_content();
} elseif (is_archive() || is_category() || is_day() || is_month() || is_year() || is_search() || is_tag()) {
fp_options(‘typeArchive’);
} else {
fp_options(‘typeFront’);
wp_link_pages(‘before=<div class=”post-pages”>Pages:&after=</div>&next_or_number=number&pagelink=<span>%</span>’);
} ?>TO
<?php
if (is_front_page()) {
fp_options(‘typeFront’);
wp_link_pages(‘before=<div class=”post-pages”>Pages:&after=</div>&next_or_number=number&pagelink=<span>%</span>’);
} elseif (is_archive() || is_category() || is_day() || is_month() || is_year() || is_search() || is_tag()) {
fp_options(‘typeArchive’);
} else {
the_content();
wp_link_pages(‘before=<div class=”post-pages”>Pages:&after=</div>&next_or_number=number&pagelink=<span>%</span>’);
} ?>Forum: Themes and Templates
In reply to: Renegade page showing ‘more’ tagForum: Fixing WordPress
In reply to: How to increase font size in Constructor?Esmi, thank you so much! That was exactly what I needed. I’m learning bit by bit. ??
This morning it appears to be normal. It must be the server – 3 different themes, different plugins (and no plugins on one of them) so I can’t find anything else they have in common.
Hopefully there will be no more problems with it today.
Thank you all for getting back to me.