paulwpxp
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Gallery carousel doesn't launch – please helpWhen you create a WP gallery make sure the Link To is set to image file.
https://codex.wordpress.org/The_WordPress_GalleryAlso, another way to create a WP gallery is to use WP Gallery shortcode, this method is really useful when you upload images attached to post(or page) directly.
Suppose we create a post and when in that post editing screen, upload images into WP, all those images will technically attached to (or belong to) this post.
Then in the post content just put this in.
[gallery link="file"]and WP will create a gallery of, in this case, 3 columns which is default.
See details here if interested
https://codex.wordpress.org/Gallery_ShortcodeThe “No Preview” is a default image in case post is missing featured image, so when you make a post just upload and assign an image as post’s featured image.
The Uncategorized is a default category, each post need at least one category to belong to, you can change this uncategorized to other name that suit your site the most.
Forum: Themes and Templates
In reply to: [Twenty Sixteen] Scroll over sub menu, main menu color?Use this code in Custom CSS plugin, or in child theme stylesheet (in case of using child theme).
.main-navigation li:hover > a, .main-navigation li.focus > a { color: red; }Forum: Themes and Templates
In reply to: [Flat Responsive] Remove Bottom Header Shadow & Sidebar IssueIssue #1 To remove that box shadow, use this code in Custom CSS plugin (or in child theme stylesheet)
.flat_responsive_header.header_one { box-shadow: none !important; }Issue #2 To remove sidebar from page, use theme’s full width page template. In the page editing screen, look over to the right and see the metabox with dropdown to pick page template. If you don’t see this metabox, pull down the tab at the top right corner and check/uncheck to bring it up.
Forum: Themes and Templates
In reply to: [Olsen Light] HTML Code for AffiliatesIt depends where you want your ads appears. If you want it to appear in the post or page content manually, in the editing screen just switch to HTML mode (it’s labeled as Text mode) and paste the code there. Also you can paste the code into Text Widget (Appearance > Widgets) so it will appear in the sidebar.
Or use this kind of plugin
https://wordpress.org/plugins/ad-inserter/Forum: Themes and Templates
In reply to: [One-Blog] Header Menu keeps scrolling with the screen!I’m glad you did it 🙂
Forum: Themes and Templates
In reply to: [One-Blog] Header Menu keeps scrolling with the screen!Did you keep the code in there? Right now I couldn’t see any Custom CSS output in the
<head>. Please try again, I see you already have Jetpack installed, so go enable Custom CSS module and use that code. Click save and refresh the page (clear browser cache) hitting Ctrl+F5 a couple times.Forum: Themes and Templates
In reply to: [Harmonic] Header image displaying largerYou are using a managed system at WordPress.COM, over here is a support for self hosted WordPress.ORG
See this page explaining the differences
https://en.support.wordpress.com/com-vs-org/Support for WordPress.com sites
https://en.support.wordpress.com/Anyway, the image size problem is because theme uses image as background with CSS background-size property set to “cover”, change this to “contain” will solve the problem. But managed site at WordPress.COM only allows Custom CSS on free account.
Try uploading image with less height ie 1240×300, it might fix the problem without additional CSS.
Forum: Themes and Templates
In reply to: [One-Blog] Header Menu keeps scrolling with the screen!Read thru these list of Custom CSS plugins and pick one you like
https://wordpress.org/plugins/search.php?q=custom+CSSand use this code in it
.head-fixed { position: relative !important; }Forum: Themes and Templates
In reply to: [Twenty Sixteen] Custom CSS for Unordered Lists Impacting MenusChange this selector
ol li ol li { /* properties */ }to this
article ol li ol li { /* properties */ }and do the same to the other (ul li ul li).
Also your CSS code posted above has php function in it, so don’t forget to remove it out, use this online tool to validate your CSS code (click on direct input tab)
https://jigsaw.w3.org/css-validator/Forum: Fixing WordPress
In reply to: pin it button not working on gallery imagesDepending on the settings of Pin It plugin you are using. Try looking through its setting page and see the condition. To my knowledge, pit it plugin allows user to specify minimal width and height of image being able to pin, just configure it to some smaller size where it’s big enough for images in gallery.
Forum: Fixing WordPress
In reply to: Help with Meta TagsTry searching for Facebook Open Graph plugin.
Forum: Themes and Templates
In reply to: Change the slider text fontDepending on what font-family we need for it. This theme is using Roboto font as default, I suppose you want it changes because of some rendering problem? Anyway suppose we only want to change it to some generic default font used in users browser, then we can do this:
First of all we need to install a Custom CSS plugin, so pick one from this
https://wordpress.org/plugins/search.php?q=custom+cssand use this code in it
.big-slider .entry-title a { font-family: serif; }or
.big-slider .entry-title a { font-family: sans-serif; }If you want other specific custom font, we need to use another plugin to load that custom font.
https://wordpress.org/plugins/search.php?type=term&q=custom+fontForum: Fixing WordPress
In reply to: Resize thumbnail/ featured image for specific custom post typeFirst of all, remember that whatever changes we make in image size via Media Settings, or set post thumb size in function, it won’t take effect to the previously uploaded images, it will only affect newly uploaded images, WordPress only crop image once upon upload. It’s important to know this when you test your code.
However I need to crop it to exact dimension. And in my other custom post types I have different sizes to deal with.
Do this in functions.php, pls note that the name is up to you
add_image_size( 'mythumb250x150', 250, 150, true);and we will do this in the CPT template
<?php the_post_thumbnail('mythumb250x150'); ?>and then upload a new image and see if it works.
This plugin helps regenerate images size to previously uploaded images
https://wordpress.org/plugins/regenerate-thumbnails/Forum: Themes and Templates
In reply to: [Pictorico] Change the featured image thumbnailThe theme you are using now is Cubic, so if you still need help with this please create a new question at Cubic theme support forum here
https://wordpress.org/support/theme/cubic