KittyFlynn
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Forms for Mailchimp] Invalid Radio ButtonNever mind. I figured out how to delete the Interest Group, but that didn’t solve the problem, so I recreated the form exactly and there’s no problem with the new form.
Forum: Themes and Templates
In reply to: [Hueman] featured image sizeOr, to change the actual size of the thumbnail, you need to copy the alx_setup function in functions.php over to a child theme (sample child theme avail in theme options help dropdown) and modify the thumb-large/thumb-medium sizes as you wish.
I tried your suggestion and the featured image on the front page of the blog remained the same size (345 width by 550 height, strangely enough). The original image size is 150×240.
Perhaps I don’t have the relevant section. This is the code I attempted to change so all width-height ratios were 160, 100:
/* Theme setup /* ------------------------------------ */ if ( ! function_exists( 'alx_setup' ) ) { function alx_setup() { // Enable automatic feed links add_theme_support( 'automatic-feed-links' ); // Enable featured image add_theme_support( 'post-thumbnails' ); // Enable post format support add_theme_support( 'post-formats', array( 'audio', 'aside', 'chat', 'gallery', 'image', 'link', 'quote', 'status', 'video' ) ); // Declare WooCommerce support add_theme_support( 'woocommerce' ); // Thumbnail sizes add_image_size( 'thumb-small', 160, 100, true ); add_image_size( 'thumb-medium', 160, 100, true ); add_image_size( 'thumb-large', 160, 100, true ); // Custom menu areas register_nav_menus( array( 'topbar' => 'Topbar', 'header' => 'Header', 'footer' => 'Footer', ) ); } } add_action( 'after_setup_theme', 'alx_setup' );Forum: Fixing WordPress
In reply to: 3.7.1 404 Error on Admin PagesHello im using resellerclub reseller hosting and same problem on my webpage http://www.demirerteknolojik.com any idea ? i cant get an email from Resellerclub they didnt answer,, plugin and theme doesnt work
The only solution I found for my problem was to get a hold of my host and have them update the PHP. If you can’t get a hold of your host then it can’t be fixed.
Forum: Fixing WordPress
In reply to: 3.7.1 404 Error on Admin PagesHave you read the minimum requirements page here – it’s not new:
I read the requirements for the update, which did not state that the overall requirements for WordPress had CHANGED in the last update. I also notice that the Requirements page doesn’t have a date stamp on it, which doesn’t notify anyone when WordPress’ requirements have changed. Not helpful at all when trying to figure out what changes to WordPress have effected my website.
Forum: Fixing WordPress
In reply to: 3.7.1 404 Error on Admin Pages@daniel Delos
Ditto. I didn’t find any warning from WordPress that it wouldn’t work on PHP 5.2, and can’t really blame Web Hub for not updating its PHP and risk breaking peoples’ codes.
Forum: Fixing WordPress
In reply to: 3.7.1 404 Error on Admin PagesChanging the PHP version did the trick for me, too. Thanks for the help!
Forum: Fixing WordPress
In reply to: 3.7.1 404 Error on Admin PagesI received a reply from my host regarding the problem. This is what they said:
It looks like the wp-config file is setup incorrectly and is trying to pull up your content from a mysql database called, wrdp1
This database doesn’t exist which is why you are having this issue. Do you know which database the site is supposed to pull up from?
if you can reply to this email with the correct database we will be more than happy to link your wordpress with the correct site.As far as I can see there appear to be two points in the config.php file that access the database (username and password lines). They are both accessing the correct database name.
What is the name of the database the config file needs to be accessing?
Forum: Fixing WordPress
In reply to: 3.7.1 404 Error on Admin PagesStrange for this to be a host problem after upgrading, but I’ve contacted my host. As for the other people experiencing problems, not sure if it’s related because I have a different host (Web Hosting).
Also, my main site is not experiencing any of these problems, and I haven’t upgraded to the new version on that site.
Forum: Fixing WordPress
In reply to: 3.7.1 404 Error on Admin PagesBumpity bump. Hoping for a reply, otherwise I’ll have to drop WordPress and go old school.