rubyannrsls
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Call to undefined function wp_get_upload_dir()Changing wp_get_upload_dir() to wp_upload_dir() worked for me too on WordPress 4.4.5. Thanks for the information. This is a goldmine!
Forum: Fixing WordPress
In reply to: Changing color of theme header, footer and rest of the site.Hi Emma,
Try adding this code to your css stylesheet (Appearance –> Editor –> style.css).header_section.hd_cover { background-color: #fff !important; }
Goodluck!
Forum: Fixing WordPress
In reply to: How to customize front page title/meta?It’s under Yoast SEO > Titles & Meta > Homepage tab. If you can’t find it, add /wp-admin/admin.php?page=wpseo_titles#top#home at the end of your website. Ex. https://www.domain.com/wp-admin/admin.php?page=wpseo_titles#top#home
- This reply was modified 7 years, 11 months ago by rubyannrsls.
- This reply was modified 7 years, 11 months ago by rubyannrsls.
- This reply was modified 7 years, 11 months ago by rubyannrsls.
- This reply was modified 7 years, 11 months ago by rubyannrsls.
- This reply was modified 7 years, 11 months ago by rubyannrsls.
Forum: Fixing WordPress
In reply to: Good chat app to integrate into wordpress website ?Hi there,
I’ve installed a fresh wordpress Twenty Sixteen theme to my localhost and installed WP Review plugin and the user rating is working fine. I guess it has conflicts in my other plugin or theme I’m using.
What’s likely should I do if I can’t deactivate my plugin and can’t change theme? Is there other option than deactivating the plugin that conflict with WP Review or changing the theme?
Thanks!
Hello,
Here’s the link of the sample review. https://www.pansolresorts.ph/resort-gallery/sample-review/
Hope it can be resolved. Thanks!
Forum: Fixing WordPress
In reply to: How do I add an Instagram Icon….Try adding
<a href="//instagram.com/chimetal2016" target="_blank" class="icon icon_facebook tip-top" data-tip="Follow us on instagram"><span class="icon-instagram"></span></a>
to<div class="social-icons share-row">
after google plusP.S. Your instagram link under CONNECT WITH US is broken. Try changing its href to
href="//instagram.com/chimetal2016"
It’s just affecting “Other Options” as far as my observation is concern. Btw, I tried to deactivate the Calendar Event plugin for the meantime to set the settings of “Other Options”. Save it. Then activate the Calendar Event plugin. Refresh. Then deactivate the Calendar Event plugin again. Check “Other Options”. And it is still set to what I last set. Is that okay? Will the settings won’t change even if it is not showing after activating the Calendar Event plugin again?
Hope we could solve the issue ??
Not yet. Now that you mention, I’ll ask them. Btw, do you find any insights about the issue?
Forum: Fixing WordPress
In reply to: changing specific fontsDid you insert the line of code in your css?
ul#secondary-menu-items a { font-size: 24px; color: green; }
Forum: Fixing WordPress
In reply to: changing specific fontsThis code might help ??
ul#secondary-menu-items a { font-size: 24px; color: green; }
Forum: Fixing WordPress
In reply to: Need help with hyperlink colors (white on white)Find this code in your stylesheet
ul { list-style: disc; }
then add color
ul { list-style: disc; color: blue; }
It can do trick but every ul you make will have that look. So if you’re only targeting this list better give it a class. Like this
<ul class="list-one"> <li><a href="https://healthydocs.net/category/exercise/">Exercise</a></li> <li>Nutrition</li> <li><a href="https://healthydocs.net/category/research/">Research</a></li> <li><a href="https://healthydocs.net/category/mental-health/">Mental Health</a></li> </ul>
Then add this to your stylesheet disregarding the first one
ul.list-one { list-style: disc; color: blue; }
Hope it works for you ??
Forum: Fixing WordPress
In reply to: Need help with hyperlink colors (white on white)the front page and not the specific post?
You mean make all the link in the front page color #0645AD?
If that’s what you mean, change this codea { text-decoration: none; color: #000000; }
to
a { text-decoration: none; color: #0645AD; }
But if you don’t want the title to be affected, add this code
a.post-title { text-decoration: none; color: #000000; }
Hope you make it work ??
Forum: Fixing WordPress
In reply to: Need help with hyperlink colors (white on white)Look for #article p a on your css and change the color to #000000
The code in your css is
#article p a { color: #ffffff; }
Replace it with this
#article p a { color: #000000; }
Goodluck!
Forum: Fixing WordPress
In reply to: How to create turn effect on images/gallery/portfolioCopy the css code on your stylsheet then tweak the html code according to the grid system of your theme. Just don’t forget the classes that is controlling the flip effect. Goodluck Carlota ??