Tekguild
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Image sizesYes, that would be using the ‘Link URL’ (None) and ‘Size’ parameter in the Advanced options when editing the image. This will do an HTML resize, which will slow down page loads a bit, but I don’t think it’s necessarily a big deal in your case.
Forum: Hacks
In reply to: Get Cropped ThumbnailI believe your Settings>Media dictates the thumbnail size – the cropping you’re doing is then resized based on the thumbnail settings.
Try one of these instead:
<?php echo wp_get_attachment_img($image->ID, ‘medium’); ?>
<?php echo wp_get_attachment_img($image->ID, ‘full’); ?>Forum: Installing WordPress
In reply to: Error during installWhich host are you using?
You could try adding the following to your wp-config.php file:
define(‘WP_MEMORY_LIMIT’, ‘256M’);
Add it almost anywhere – make sure to copy/paste only the text – no extra spaces. I usually put it just above the area for auth key salts (above the comments).
Forum: Fixing WordPress
In reply to: Database backup – phpMyAdmin vs native exportMySQL Workbench should do what you need – as long as you have the database name, URL, user name and password.
Forum: Fixing WordPress
In reply to: Image sizesWhen inserting the image you can choose the image size to display in the post as well as indicating the link URL to the full image.
If you go to Settings>Media you can set your Medium image size as 300×300 and, if your image is larger, you’ll get that option in the Size drop down menu when inserting an image.
Forum: Fixing WordPress
In reply to: Pre-fill description, title, alt text and caption of a mediaThere’s no way that I’ve ever seen to be able to do this.
Forum: Fixing WordPress
In reply to: Random text on home pageIt appears there are some inline CSS styles making the text show up oddly.
The code I’m seeing is below – the position elements are what’s putting the text there. Do you recall where this text was added to your site? If so – remove the inline position styles and that should fix it, at least based on what I’m seeing. Without access to the back end of your site, I can’t be absolutely sure why this is happening – this is just what’s showing in the front end.
<div id=”stcpDiv” style=”position:absolute;top:-1999px;left:-1988px;“>Apr 27th, 2012 | By Catherine J. Frompovich</div>
Can you post a link to your site so we can see exactly what’s going wrong?
Forum: Themes and Templates
In reply to: Trouble inserting ads between posts on EaselTry inserting the adsense code where I’ve indicated below
<?php get_header();
if (!easel_themeinfo(‘disable_blog_on_homepage’)) {
if (have_posts()) {
while (have_posts()) : the_post();
get_template_part(‘content’, get_post_format());
endwhile;
[ insert ad code here – it will show above the comments if you have comments enabled ]
if (easel_themeinfo(‘enable_comments_on_homepage’) && (easel_themeinfo(‘home_post_count’) == ‘1’)) {
$withcomments = true;
comments_template(”, true);
} else
easel_pagination();
}}
get_footer();
Forum: Themes and Templates
In reply to: Full page post on front pageYou could try changing it in the Settings>Reading in your Admin panel.
Forum: Themes and Templates
In reply to: [Cazuela] Different layouts for homepage & single post/pageHow are your code skills? Which theme are you using?
If you know which template you’re using for the home page (usually home.php) or your posts page(s) (usually single.php) you can edit the code of those pages to omit or add sidebars.
Depending on your theme, adding or removing sidebars may be built into it’s functionality.
Forum: Themes and Templates
In reply to: Child Theme style.css not loadingAny time I see Dreamweaver, my first inclination is that it’s done something to the file which is causing the problem.
What I would recommend is copying the text you posted above for your child style sheet into a plain text editor and save with with the name ‘style.css’, then upload that to your server.
I’d bey money that will solve your problem.
Then it must be something else affecting your site. When you set up BWPS, did you enable anything in the Tweaks section?
It may be easiest to reenable the plug in and go through each section disabling the options so that it returns everything to a default state.
Using FTP open the .htaccess file at your site root and remove everything between # BEGIN Better WP Security and # END Better WP Security. Then resave it to the site root.
Forum: Plugins
In reply to: [Background Per Page] Background not appearingI had the same problem. It seems that there’s a problem with the function call for the blog page if it’s defined in the Settings>Reading options>Blog Page. If you don’t set the page there (leave it blank), the background works.
Maybe the developers can take a look at this?