mfghost
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Botiga] Add Featured Products To Home PageDo I have to do anything to make the images show, like add any shortcode? Or the products automatically display? And thanks.
Forum: Themes and Templates
In reply to: [Botiga] Fonts Not Working Correctly After Edit In Customizerni they were available in Google Fonts. I was using them before I added the CSS. Once the CSS was added in knocked them out and I couldn’t use them anymore for whatever they reason.
Forum: Themes and Templates
In reply to: [Botiga] Fonts Not Working Correctly After Edit In CustomizerOK so I already changed the header fonts. They were Archivo Black but once I added the code below in the customizer The header text on the home/blog page worked fine but on the single post page & WooCommerce product titles changed to what I believe to be Archivo regular (they were very skinny) and when I went into “typography” in the customizer and changed the header fonts to anything else they would change to that font but if I changed back to Archivo Black they wouldn’t work. They would stay skinny. I then added the “@fontface” code after installing the Archivo Black font in the theme directory but the fonts still would not display at all. Then I just changed them to the current fonts.
Here is the code I used:
.posts-archive .entry-title a { text-transform: uppercase; background-image: linear-gradient( -225deg, #231557 0%, #44107a 29%, #ff1361 67%, #fff800 100% ); background-size: auto auto; background-clip: border-box; background-size: 200% auto; color: #fff; background-clip: text; text-fill-color: transparent; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: textclip 2s linear infinite; display: inline-block; font-size: 30px; } @keyframes textclip { to { background-position: 200% center; } }The only edits to the above code were hex colors so I know that wasn’t the issue. Once the fonts didn’t work, like I said I installed the font to the directory, then tried this code, which worked for the home page titles but still made all other heading fonts skinny. They displayed correctly in the customizer for desktop, tablet and mobile sizes but when I looked on an actual mobile device they were not showing correctly. I tried both an Android and an iPhone. Below is the modified CSS I thought would bring the fonts back but I had no luck.
@font-face { font-family: 'Archivo Black'; src: url('https://website.com/wp-content/themes/botiga/fonts/ArchivoBlack-Regular.ttf') format('truetype'); font-weight: normal; } @keyframes textclip { to { background-position: 200% center; } } .posts-archive .entry-title a, .single .entry-header .entry-title { text-transform: uppercase; background-image: linear-gradient( -225deg, #dbdcd7 0%, #dddcd7 24%, #e2c9cc 30%, #e7627d 46%, #b8235a 59%, #801357 71%, #3d1635 84%, #1c1a27 ); background-size: auto auto; background-clip: border-box; background-size: 200% auto; color: #fff; background-clip: text; text-fill-color: transparent; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: textclip 4s linear infinite; /* Adjust the animation duration here */ display: inline-block; font-size: 30px; font-family: 'Archivo Black', sans-serif; } /* Media Query for Mobile Devices */ @media (max-width: 767px) { .posts-archive .entry-title a, .single .entry-header .entry-title { font-size: 24px; } }Hope you can figure it out.
Forum: Themes and Templates
In reply to: [Botiga] Need to hide sidebar on home page onlyi musy have missed it. It’ll hide it in the blog home page but let me keep in on single posts & the WC store?
Forum: Fixing WordPress
In reply to: Website speed very slowyou use a caching plugin? that’ll definitely help.
yeah thats what I figured. If it was just your plugin not pulling 1st class shipping that’s one thing but any other live rates type of plugin I tried is doing the same thing. Thanks for the response.
I actually tried the “commercial rates” option at the bottom of the list of shipping options and when I use commercial rates first class packages works. The only problem is the prices for all the options I use are cheaper than what I would pay at the post office. I’ve tried to print labels online before but there’s always an issue with the USPS site so I gave up on them “losing labels”, not allowing me to ship to certain addresses, etc. so I just use the retail prices that usually come back with the live rates. They were working fine up until the update 3 days ago. I think it might be an error on USPS because I’ve tried another “live shipping rates” plugin and also didn’t get any first class prices back. I hate when this happens lol.
yeah there was nothing on the page except “your cart is empty”. I added an image and some text that pushed the footer back down. Thanks.
yeah I’m trying to find the best variables to use for each SEO title and meta description. Are the default settings best? Or should I change them around.
Forum: Themes and Templates
In reply to: [Botiga] Home Page Suddenly Not Showing Latest Posts on Mobilei wonder why it’s not showing for me…I’ll figure it out. Maybe chrome needs to update.
Forum: Themes and Templates
In reply to: [Botiga] How Do I Make Related Posts Images Clickable?It can be done though right? I would have to edit functions.php or just CSS? Probably the functions file.
Forum: Themes and Templates
In reply to: [Botiga] Need Help With Space Between Logo Image & Top Of Pagethanks for the response, it was actually the overlay image. I made it in Photoshop and for some reason there was a 1px transparent border around the image when I saved it. I just used the brush tool and painted the edges of the image and it was fine.
Nevermind I found it in settings.
Forum: Themes and Templates
In reply to: [Botiga] Mobile Menu Not Working On iPhone/Safari Mobileyeah I fixed it, the Async Javascript was messing it up. I turned it off and the menu started working again. Thanks.
Forum: Fixing WordPress
In reply to: Help With Adding Image Overlay On Featured ImagesYeah I know how to use the linear-gradient but when I add the element for some reason it cuts the featured image in half horizontally, not sure why. I’ll retry it again using the mask-image. Thanks.