paulwpxp
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Hemingway] Extra logo in headerThere is no need to mess with php file, we can do that with CSS
First, we just need to install a Custom CSS plugin, so read through them and pick one and install it
https://wordpress.org/plugins/search.php?q=custom+cssand then upload the png logo image to the site, just like we normally upload image into post but we don’t insert the image into post, we only need to get the image url to use in our CSS
.blog-title a::before { background-image: url("http://dummyimage.com/100x100/0011ff/ffffff.png"); content: ""; width: 100px; height: 100px; display: inline-block; float: left; margin-right: 25px; } @media (max-width: 800px) { .blog-title a::before { float: none; margin: 0 auto 25px; display: block; } }Just change the image url to our own.
Forum: Themes and Templates
In reply to: error: creating default object from empty valueSee to it that WP_DEBUG is false in
wp-config.php
http://codex.wordpress.org/Debugging_in_WordPressMy friend doesn’t want to change the theme and the theme creators are not able to provide support because the theme has been discontinued.
For security reason it’s not a good idea to keep using old theme. The reason your friend doesn’t want to change theme might be the impression that changing theme will lose the old design. This is not true, we can make new theme look alike previously used theme. Your site has only 5 pages and it has simplistic 2 columns layout that is easy to make a child theme out of WP’s TwentySixteen theme.
Forum: Themes and Templates
In reply to: [Amadeus] Where are the social media buttons at the top?That part will automatically appear when we have a menu called Social with links to social sites as menu items.
So navigate to Appearance > Menus and then create a new menu, name it “social”, add in Custom Link (to each of your social site), drag it into the menu and click save.
Forum: Themes and Templates
In reply to: Problems with uploading ThemeThis page explains the difference between WordPress.com and .org
https://en.support.wordpress.com/com-vs-org/The .com is a managed host, it’s free hosting (but it sometimes display ads unless you buy the no ads option). Plugins and Themes are there but we can not add our own, customization allows only via custom CSS (paid option).
The .org is self hosting meaning that we have to pay for hosting and manage the database keeping the site healthy up and running on our own.
We can work around this using custom CSS. First we need to use a Custom CSS plugin, there are many of them available so pick one and install it.
https://wordpress.org/plugins/search.php?q=custom+cssthen use this code in it.
.main-navigation ul.nav-menu.toggled-on, .menu-toggle { height: 32px; overflow: hidden; } .main-navigation ul.nav-menu.toggled-on, .menu-toggle::before { content: "Chapters"; display: block; height: 20px; }Forum: Themes and Templates
In reply to: Problems with uploading ThemeClick on Themes under Appearance
Page title nowsays Themes with the Add New button next to itClick on Add New
Page title now says Add Themes with Upload Theme next to itClick on Upload Theme
It will now show Browse button, click to bring up file explorer and choose the theme zipIf that’s not what happened it could be that you are on a managed host environment where it prevents users to upload our own themes.
Forum: Themes and Templates
In reply to: [Sydney] Sydney 1.25 incompatible with Internet ExplorerThanks a lot Vlad, good to know it’s not theme’s issue.
Forum: Themes and Templates
In reply to: Change uppercase in headingsFirst make sure your theme’s CSS is as new, as original. Reverse any changes done to it, or better yet replace it with theme’s original.
Then install a Custom CSS plugin (read through them and pick one)
https://wordpress.org/plugins/search.php?q=custom+cssafter you install and activate the plugin, go to plugin setting page and put this CSS code in there
.entry-title, .entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6, .comment-content h1, .comment-content h2, .comment-content h3, .comment-content h4, .comment-content h5, .comment-content h6 { text-transform: none; }Click save and then on the front end, reload the page ( hit Ctrl+F5 a few times ). Sometimes changes made to the site doesn’t appear right away because of server side caching or our browser’s cache.
Forum: Themes and Templates
In reply to: page template call sequence?Is that all the body class list? If so, theme has custom function filtering WP body class function. Usually we will see blog class with home or blog class with page.
The page in question is an empty “page” type which is marked as “news”, and the content is magically replaced with the “latest entries” list — just can’t figure out where the magic happens.
This is a normal behavior when we set a page as blog listing page (Post Page), and the other specific page as static Front page
https://codex.wordpress.org/Creating_a_Static_Front_PageIn this case your “Latest News” page is using
home.phptemplate.Forum: Themes and Templates
In reply to: page template call sequence?What you did just proved that your theme’s “Latest News” page doesn’t come from
page.php.Try view source on the Latest News page and see the body class (CSS class name assigned to
<body>tag), it will tell you what template it uses, and then you can figure out how to override it in your child theme.Body Class
https://codex.wordpress.org/Function_Reference/body_classTemplate Hierarchy
https://developer.wordpress.org/themes/basics/template-hierarchy/Forum: Themes and Templates
In reply to: Change "add to cart" button in category to product description.I’d do that via CSS only; display-none the “Add to Cart” button and extend the Show Details Button all the way.
If that doesn’t do it, post this question in plugin’s own forum
Visit this page and post question there, it will show up in plugin’s forum where plugin author and people who are using this plugin monitor the threads.
Forum: Themes and Templates
In reply to: div within table?We gonna need 2 extra divs like this
<div class="mymailchimp"> <!-- code here --> </div> <div class="mysocials"> <img> </div>and then in the CSS we do this
.mymailchimp {width:30%;float:left;} .mysocials {width:70%;float:right;}but it’s a responsive theme so you have to put in media query making it collapse in certain breakpoint.
Forum: Themes and Templates
In reply to: [Sydney] Sydney 1.25 incompatible with Internet ExplorerRight now this thread is on the top (latest) one on this theme forum here
https://wordpress.org/support/theme/sydneySo theme author should get noticed already.
To get more officially support from theme author, I think you should try theme homepage linked to on theme’s directory page
https://wordpress.org/themes/sydney/
(click on Theme Homepage)
Forum: Themes and Templates
In reply to: Laundry themeThe best to you too 🙂
Forum: Themes and Templates
In reply to: [Hemingway] Mobile version – link to full version is missingAre you using some kind of mobile theme plugin? if the answer is yes then please post the question in that plugin’s own forum, go to that plugin page and click on View Support Forum on the right and post the question there.
If you are not using any of mobile theme plugin then the behavior you see is theme’s responsive design nature. It will adapt to device screen size like it is, and there is no way to put in View Full site option.