toasticuss
Forum Replies Created
-
Forum: Plugins
In reply to: [Translate Wordpress with GTranslate] content pushed downActually that css fix / hack may be pretty bad for some people, the drop down will be fixed in that location and will scroll as you move down a web page. That may work for people that use a sticky header / nav bar but not everyone.
Thanks for the tip about the other drop down style! I didn’t even realize that was there. That works fine for me too. It also wouldn’t be to hard to modify that with some Javascript to add flags to it as well.
- This reply was modified 2 years, 4 months ago by toasticuss.
- This reply was modified 2 years, 4 months ago by toasticuss.
Forum: Plugins
In reply to: [Translate Wordpress with GTranslate] content pushed downI have the same issue it forcibly expands my header height shifting things around when the box is expanded, I just want the dropdown to stay static. In the browser dev tools if I set the .gt_switcher position to absolute, it works alright.
This is the CSS override I am using for now, it looks okay:
.gtranslate_wrapper {
position: fixed;
margin-top: -10px;
margin-left: 20px;
}How did you figure it out? Your language dropdown on Pacospain.net is nice.
- This reply was modified 2 years, 4 months ago by toasticuss.
- This reply was modified 2 years, 4 months ago by toasticuss.
- This reply was modified 2 years, 4 months ago by toasticuss.
- This reply was modified 2 years, 4 months ago by toasticuss.
- This reply was modified 2 years, 4 months ago by toasticuss.
Turns out there’s a checkbox to show a U.S. flag in the GTranslate settings in the WordPress admin settings. Look for a section called “Alternative Flags”
🤦♂️
Forum: Themes and Templates
In reply to: [OceanWP] Social icons missing in the free Store themeWell I made a CSS hack to fix this after looking at my other OceanWP site, either Elementor is buggy and not properly disabling its fonts when it says it should or the Store theme has a bug.
My css bandaid fix:
.fa { font-family: "FontAwesome" !important; }Insert this under Customize > Custom CSS/JS near the bottom
- This reply was modified 6 years, 8 months ago by toasticuss.
Forum: Themes and Templates
In reply to: [OceanWP] Social icons missing in the free Store themeDisabling the Elementor plugin brings back the social icons, but removing it and reinstalling it breaks the icons again 🙁
Forum: Themes and Templates
In reply to: [OceanWP] Social icons missing in the free Store themeThings I’ve tried:
Disabling all OceanWP plugins
Trying CSS fixes posted here
Changing themes
ReinstallingNotable things:
In the chrome dev tools, if inspect the social icons and disable the CSS font selector applied, the icons show up:image example: https://imgur.com/a/kPIjQVH
Forum: Plugins
In reply to: [Flexible FAQ] /faq page is not working after installing flexible-faqStill not fixed.. any ETA?
Forum: Fixing WordPress
In reply to: Changing the HREF when leaving a comment?In case anyone finds this post – I changed the comment code to the ID like this –
<?php if ( comments_open() ) : echo '<p>'; comments_popup_link( 'No comments yet', '<a href="#respond">Leave a comment</a>', '<a href="#respond">Leave a comment</a>', 'comments-link', 'Comments are off for this post'); echo '</p>'; endif; ?>Where #respond is the comment box.
Forum: Fixing WordPress
In reply to: Previous posts link in existing site?What about this, I found this WordPress Ajax loader plugin – http://ww.wp.xz.cn/plugins/advanced-ajax-page-loader/
When clicking the older posts button it refreshes the div with ajax and loads the older posts. How could I manually call this plugin to put it in my main site?
Is there a chunk of PHP that tells wordpress to load the plugins folder?
Forum: Fixing WordPress
In reply to: Previous posts link in existing site?Thanks for the reply, this doesn’t address how to handle reloading the pages with older posts though. When clicking to the other pages it’ll redirect me to the WordPress site.
Forum: Fixing WordPress
In reply to: Previous posts link in existing site?Thank you for the reply, do you have a demo of Pagination in action?
Forum: Fixing WordPress
In reply to: I need help making a gallery of SWF filesAh, I won’t bother then. Thank you so much for the help! Marking as resolved.
Forum: Fixing WordPress
In reply to: I need help making a gallery of SWF filesFile paths have been taken care of, I also ran the that plugin and it updated 78 other URLs!
Forum: Fixing WordPress
In reply to: I need help making a gallery of SWF filesHmm, I think the images paths need to be updated, I originally worked on this from my desktop using local host and migrated it last night, the pictures may still be loading from my computer…
Anyway I added more height and got a uniform look – http://i.imgur.com/JnB2Xpq.jpg However there is room on the right for them to go but there is a width limiting them, is there anyway to expand it?
EDIT: Links have been updated from localhost as I suspected to the domain…
Forum: Fixing WordPress
In reply to: I need help making a gallery of SWF filesThank you for that, however it’s not quite there, adding that CSS gives it this look – http://i.imgur.com/79DeIP4.png
Giving it padding just stretches the images and breaks the captions. Any ideas?
Update: Giving that same CSS tag a margin of 50 gives this – http://i.imgur.com/exCQm5Y.png
which is much closer!