ikaring
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Jump link to different pagesIt seems some js relocate home page contents after page load.
So, I guess, it scrolls down to wrong section if you jump to anchor link from other pages.Forum: Fixing WordPress
In reply to: EmojisWP supports Emoji since 4.2, pls check this codex page.
https://codex.wordpress.org/EmojiAs to plugin, how about this one.
https://wordpress.org/plugins/super-emoji-plus/Forum: Fixing WordPress
In reply to: WordPress comments sectionTry adding this css in Appearance -> Customize -> Additional CSS.
.adjacent-entry-pagination { overflow: hidden; }Forum: Fixing WordPress
In reply to: Widget area font is different on one page only – where to look?Hi!
It seems you have<code>tags around goodreadsGiveawayWidget(?).
That changes the font-family to monospace inside the tags.
Pls check your widget area or theme template for the page.Forum: Fixing WordPress
In reply to: Displaying current location in HomepageHi.
Is this something to do with WordPress?
BTW, your html lacks<head>tag and some closing tags.Forum: Fixing WordPress
In reply to: need help getting rid of white space on sidebar menuHi.
Add these css with one of custom css plugins.
https://wordpress.org/plugins/search.php?q=custom+css
#secondary .widget { // for sidebar box padding: 0; background: transparent; } #secondary .widget p { // for p tags wrapping a tags margin: 0; } #secondary .widget p img { // for img tags margin-bottom: 0; }Forum: Fixing WordPress
In reply to: newbie here but how do.i get it to look like thisAs to menus below Hueman logo ( PostFormats,Lifestyle,Music…), they are set in appearance > menu by checking Theme locations as ‘Header’. Add as many link items as you need.
Left and right columns are set by widget.
They are set in Appearance > Customize > Dynamic Sidebars and Widgets.
See Primary for left column and Secondary for right column.
Add any widgets you need.Forum: Fixing WordPress
In reply to: Issue for Live Demo in WoocommerceThanks.
The url in the last line is of single product page, right?
What is the url for the demo page should be?Forum: Fixing WordPress
In reply to: Issue for Live Demo in WoocommerceHi, adwap7.
Can you provide ‘some code from google’ here?
What kind of url should it be?It seems the function user_is_vendor() is theme specific, you would better ask theme author for help.
BTW, it is not good to contact people off of the forum, pls check Forum Welcome page.
Forum: Fixing WordPress
In reply to: newbie here but how do.i get it to look like thisHi.
I dont know if it is what you say ‘links’, but you can set Menus in Appearance – Menus.Hi.
I dont think is_user_logged_in() is the culprit, since that function only returns true or false.
You must be using that in if clause, and the culprit might be in the block.
Can you provide your code here?Forum: Networking WordPress
In reply to: Multisite not copying the right template.That is because default theme is twentysixteen.
You can set default theme in your wp-config.php.
I think you still need to customize colors and other settings for each sites.define('WP_DEFAULT_THEME', 'yoo_sun_wp');Pls check this thread.
https://wordpress.org/support/topic/setting-new-default-theme-for-future-created-blogs-on-multisite?replies=18Forum: Themes and Templates
In reply to: Virtue Theme – Blank Spaces in Portfolio GridThis css should fix. Add with a custom css plugin is a easy way, I guess.
.tcol-md-4:nth-child(3n+1) { clear: left; }Forum: Networking WordPress
In reply to: Multisite logo all linking to main siteHow about
<?php echo get_home_url( get_current_blog_id() ); ?>