supportie
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Line spaceing in Twenty-eleven themHey susadmin, have you already modified the parent theme’s files? (e.g. style.css) Are you using the twenty eleven theme?
Forum: Fixing WordPress
In reply to: WordPress gallery link by default to fileNo problems. I’m guessing changing that option wont override your past images, it will act as default for future ones.
If you want to use the lightbox/colorbox with the cleaner gallery plugin, there are some detailed instructions here https://springthistle.com/updates/colorbox-with-wordpress/
Looks like you got it sorted ??
Forum: Fixing WordPress
In reply to: Show 2 plugins on main page instead of just post page..So once you install the social icons plugin. If you go into appearance -> widgets you should see a social icons widget which you can drag into the widget areas on the right. These widget areas depend on the theme, but generally most themes have a primary widget area which is usually the sidebar.
Forum: Fixing WordPress
In reply to: [Loop] Multiple loops on a category templateNot sure I am on the right track, but you could get the current category id on the archive page using something like:
$category = get_queried_object(); $popular_loop = new WP_Query(array('v_sortby' => 'views', 'v_orderby' => 'desc', 'posts_per_page' => '4', 'cat' => $category->term_id));
Forum: Fixing WordPress
In reply to: WordPress gallery link by default to fileTry setting it to “none”
Forum: Fixing WordPress
In reply to: Private Category (members only)That code shouldn’t be in header.php. It depends on the theme but generally It will need to go within index.php and single.php. In these files you will see “the loop” which is where your posts are displayed, this is where your code should go.
So it will look something like this (haven’t tested it)
<?php while ( have_posts() ) : the_post(); ?> <?php if(in_category( array( 5,10 ) ) { // if the current post is in categories 5 or 10 ?> <?php if ( !is_user_logged_in() ) { // check whether the user is logged in ?> <p>You'll need to be a member to view this content.</p> <?php } else { // user is logged in so go ahead and show content ?> <?php the_content(); ?> <?php } ?> <?php } ?> <?php endwhile; ?>
Cheers.
Forum: Fixing WordPress
In reply to: Color ShiftsWhat theme are you using? What format is the header image in?
Forum: Fixing WordPress
In reply to: WordPress gallery link by default to fileHello,
You can access the default options page by going to https://yoursite/wp-admin/options.php and setting the “image_default_link_type” option to “file”.
Otherwise you can try the cleaner wordpress gallery plugin.
Hope that helps!
Forum: Fixing WordPress
In reply to: Can't add featured imageIf the image isn’t showing up in the post edit screen after clicking “set as featured image” then the theme might not be the problem. Can you add a featured image if you switch to twenty twelve theme?
Forum: Fixing WordPress
In reply to: Show 2 plugins on main page instead of just post page..Hi there,
The I Recommend This plugin includes a code you can use in your template files.
<?php if( function_exists('dot_irecommendthis') ) dot_irecommendthis(); ?>
The file depends on the theme you use but it will probably be in index.php within the loop.
The Social icons plugin just uses a widget. So the theme you use needs to have a widget area in the blog template.
Forum: Fixing WordPress
In reply to: How do I get access to my website to edit?Hey Ashley, try https://yoursite.com/wp-admin/
Forum: Themes and Templates
In reply to: [Oxygen] Lost my right hand sidebar on homepage?Hi there,
I haven’t used Oxygen theme personally, however looking at their demo it seems you have to have add the recent articles or more articles sections on the homepage for the right sidebar to display. Are there any options to enable this content section on the homepage? (using the home template)
Forum: Fixing WordPress
In reply to: Update to latest version failed… blog is MIA.Hey Destea,
What version of WordPress did you originally have? Sounds like it could of just been a corrupt install. Can you access /blog/wp-admin ?
esmi had some good suggestions in another thread. Try these:
– switching to the Twenty Twelve theme by renaming your current theme’s folder inside wp-content/themes and adding “-old” to the end of the folder name using FTP or whatever file management application your host provides.
– resetting the plugins folder by FTP or phpMyAdmin.
– re-uploading all files & folders – except the wp-content folder – from a fresh download of WordPress. Make sure that you delete the old copies of files & folder before uploading the new ones.
– running the upgrade manually via wp-admin/upgrade.php
Forum: Themes and Templates
In reply to: Trouble Installing Theme – Windows ServerThomas,
This error usually occurs when the file cannot be uploaded due to permissions on the folder or the file size is too large.
How large is the theme zip file? There is a size limit set in php.ini (upload_max_filesize) that could be blocking it.
The other thing to check is if you have write permissions to the folder (right click the folder and make sure the process account has write permission).
If you setup the ftp properly and allow permissions to be inherited it should be fine.