nazcar
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Help I got this Fatal error:Try increasing your memory limit https://codex.www.ads-software.com/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
Forum: Fixing WordPress
In reply to: Admin tabs have disappearedHi StephanieHunt, are you logged in as administrator?
if yes, there might be an enabled plugin that causes your problem.
Forum: Fixing WordPress
In reply to: comment counterchandanonline4u’s suggestion is easy to implement.
but if you prefer a plugin, try this one: https://www.ads-software.com/extend/plugins/gregs-show-total-conversations/screenshots/
Forum: Fixing WordPress
In reply to: Posts not in any sort of orderit seems that all three entries have same dates, did you try checking the time posted?
Forum: Fixing WordPress
In reply to: Remove Enclosure thing.are you using feedburner for your subscription?
i think this is a feedburner issue..
Forum: Fixing WordPress
In reply to: How do i add pictures in the other categoryThis may be a feature of your current theme.
Usually, it can be found on the Theme Options under Appearance tab in your wp admin.
Please check if they supplied manual for your theme.Forum: Fixing WordPress
In reply to: HELP! “Failed to open stream”go to your sql database..
on your phpmyadmin,go to the wp_options table (*_options)
alter the siteurl
domain.com/wp to https://www.yourdomain.com
PS: backup your sql database before editing.
Forum: Fixing WordPress
In reply to: Showing a list of posts on my static-front-page!you can customize the appearance of your frontpage(usually the index.php of your theme), you can put the loop
<?php if(have_posts());?> <?php while(have_posts()); the_post();?> // The Stuff... Custom HTML & PHP Code - title - time - date <?php the_excerpt() ?> <?php else;?> <?php endif;?>
i implemented it on this site
Forum: Fixing WordPress
In reply to: Embedding videohere’s the smart youtube plugin:
https://www.ads-software.com/extend/plugins/smart-youtube/You can try the flash video player to embed your videos on your server
https://www.ads-software.com/extend/plugins/flash-video-player/or the
<embed >
tag to insert videos.Forum: Fixing WordPress
In reply to: 500 – Internal Server Error — Comment bocits working fine..
no problem when i drop a comment..Forum: Fixing WordPress
In reply to: How can I change my post font size and line spacing?Look for this line:
#content .entry {
text-align:justify;
margin: 5px 7px;
}you can add:
font-size: 12px;
or your desired font size..
#content .entry {
text-align:justify;
margin: 5px 7px;
font-size: 12px;
}Try adding the !important declaration on your background definition on your css.
background: #000000 url(/images/bg.jpg) no-repeat fix top left !important;If unsatisfied with the loading results, try lowering the quality of your background image, 124KB really takes time time to load on browsers without caching.
you can try this plugin too https://www.ads-software.com/extend/plugins/wp-super-cache/
Forum: Fixing WordPress
In reply to: Problems with Page orderscheck your navigation, <?php wp_list_pages … in the header.php of your theme
then edit the code wp_list_pages sort order into menu_order
Check out this codex for details:
https://codex.www.ads-software.com/wp_list_pagesForum: Fixing WordPress
In reply to: Fatal error: Call to undefined function: wp_related_posts()you have error undefined function named wp_related_posts..
its not a native function of wordpress..
if you downloaded this theme from premium themes provider, it should be bundled with a plugin.
Try to install this plugin:
https://www.ads-software.com/extend/plugins/wordpress-23-related-posts-plugin/If it didnt work, remove the code that calls wp_related_posts in your single.php in your current theme.
post your url please