KittyFlynn
Forum Replies Created
-
Forum: Plugins
In reply to: [Novelist] Incapable With My WordPressIs there a way to manually edit the slug to input all the information I have for my 100+ books, and then change it back?
Forum: Plugins
In reply to: [SlimStat Analytics] Recent Month ChangeFunny, this topic was changed to resolved.
Forum: Plugins
In reply to: [SlimStat Analytics] Recent Month ChangeNo, you can’t. No, it isn’t. No, this shouldn’t have ever happened, but you had to appease the squeaky wheel.
Forum: Plugins
In reply to: [SlimStat Analytics] Recent Month ChangeDamn, clicked the ‘Solved’ button too soon. The link for the “Current month so far” has to be reclicked every bloody time I go to my dashboard. Not cool.
Forum: Plugins
In reply to: [SlimStat Analytics] Recent Month ChangeThanks for the tip! I didn’t want to be a squeaky wheel, but if it worked for the naysayers, I figured I’d try it as a non-naysayer.
Forum: Fixing WordPress
In reply to: DIVs being ignored in mobile viewThat was the trick! Thanks so much for the mobile lesson!
Forum: Plugins
In reply to: [Easy Forms for Mailchimp] Move DescriptionGood to know about the change. Otherwise, people don’t know what they’re getting into before they get to the choices.
Forum: Plugins
In reply to: [Easy Forms for Mailchimp] Move DescriptionI’m talking about each field’s description. Here’s the link: https://macflynn.com/faq/arc-sign-up/
As you can see, for the field named “Amazon Profile URL” (and others) the description is below the text box/radial buttons (like the “This is required. . .” statement).
Forum: Plugins
In reply to: [SlimStat Analytics] "Unexpected output" after updating to 4.3.2I also had the error messages after updating. I removed the var_ and had one final “headers already sent” error message, and now pages update normally. Thanks, up3!
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 https://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!