Dburwebby
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: After WordPress update, content on pages are not showing anymoreForum: Plugins
In reply to: [Crop-Thumbnails] I’m able to crop the thumbnails but not able to view itNever mind, it works. I had to delete the images I already set and re-upload them and crop them again.
Forum: Fixing WordPress
In reply to: How do you make the classic editor compatible with a custom theme?One thing I don’t remember, but what is the default styling to a blockquote? Is it just margin to it, or is there any color or italics change? I mean I guess I can added whatever styling myself and customize it, but I’m interested in knowing what the default for that was, I can’t seem to remember it.
Forum: Fixing WordPress
In reply to: How do you make the classic editor compatible with a custom theme?@gappiah Thanks, that link helps a lot! I guess I was looking up the wrong thing on how to add support for the classic editor when instead I should have looked up default CSS classes.
Anyone else running into the same issues, here’s some more info on it:
https://codex.www.ads-software.com/Wrapping_Text_Around_Images
https://codex.www.ads-software.com/CSS#WordPress_Generated_ClassesForum: Fixing WordPress
In reply to: How do you make the classic editor compatible with a custom theme?@gappiah Unfortunately, it’s a local testing server so I wouldn’t be able to link you to anything you’d be able to see.
So if the classic editor is using specific classes and values, is there a list of it I can see to add it to my css file? That way I can add all the right classes and values so it functions as intended.
@mlchaves Thanks, that’s actually pretty helpful.
I did, however, come across an answer online which I somehow missed.
https://wordpress.stackexchange.com/a/266488/218499
Using that function solved it for me.
@vijayhardaha That actually seems a little complicated to me, I’m not really understanding that.
So I figured out how to display the category name by ID and to get its link. Doing it as a widget might be way too advanced for me at this point.
The problem I’m running into now is getting to display the post count for that specific category.
<?php $category_1_id = get_cat_ID( 'Uncategorized' ); $category_1_link = get_category_link( $category_1_id ); ?> <a href="<?php echo esc_url($category_1_link); ?>" class="categoryLink"> <div class="row px-0 mx-0"> <div class="categoryItems col-auto me-auto px-0"> <?php echo get_the_category_by_ID( '1' ); ?> </div> <div class="categoryItemCount col-auto px-0">(Post Count Goes Here)</div> </div> </a>
Forum: Fixing WordPress
In reply to: Installed a them and I’m running into errors.Thanks for the help. Yeah I had to install the featured content gallery, I thought I could just use the nextgen gallery.