mjepson
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Celestial - Lite] Remove Home Option From HeaderGo to Appereance > Menus and create a new empty menu, and assign it to your main menu location.
Forum: Themes and Templates
In reply to: [Celestial - Lite] Remove Home Option From HeaderHi,
You can customize the navigation in most themes by using WP Menus (Appearance > Menus).
If that doesn’t work, can you please post a link to your site?
Forum: Themes and Templates
In reply to: [Matheson] Hide TagsHi,
You can easily hide anything on your website by using some CSS like
.tags { display: none; }
Do you have a link to your website?
Forum: Themes and Templates
In reply to: [Litesite] Change Menu ColorsHi,
If you use the Inspect Element tool in Google Chrome, or Firebug in Firefox, you can find which file has the CSS.
See this screenshot which points to the CSS file: https://d.pr/i/W110/cgQ6QQjr
I would highly recommend copying the CSS into the Custom CSS module in the JetPack plugin instead of modifying your theme’s CSS files. Here is the CSS to change the color:
.nav ul li.current-menu-item { background: #ff00ff; }
Regards
MagnusForum: Themes and Templates
In reply to: Upgraded to WP 3.7.1 – Freezing in Safari 7.0Hi,
We’ve isolated it to being an issue with Safari not being able to handle the javascript in our WooFramework.
You need to update from Safari 7.0.0 to Safari 7.0.1 to fix this bug in the Safari browser.
More info can be found here: https://woothemes.zendesk.com/entries/28528516-Options-panel-hanging-in-Safari-7-on-Mac-OSX-Mavericks
Forum: Reviews
In reply to: [WooCommerce] I'm supporting WooCommerce & the Ninjas!Really pleased to hear feedback like this!
Thank you ??
Forum: Reviews
In reply to: [WooCommerce] Poor supportHi Howard,
Sorry you are not happy with our support.
You currently have 4 tickets in our help desk, 3 of which are solved (of which 2 you gave good satisfaction, 1 bad satisfaction for late reply).
The last open ticket was last replied to by our agent last night and it has only been 9 hours since. Our support is structured so that the agent that answers your ticket, is assigned to the ticket until it is solved.
Therefore your ticket will only be replied back to once the agent is at work.
Our support policy clearly states this:
Our general support hours are Monday to Friday, 08:30 to 17:00 (GMT+2). During this time, we strive to respond to all theme queries within 24 hours. More advanced or technical queries may take longer.
Forum: Themes and Templates
In reply to: Fatal error. the update??Do you have any WooCommerce extensions installed?
Forum: Themes and Templates
In reply to: Fatal error. the update??This function requires PHP 5.1.2 minimum.
Can you check with your host which version you are using?
Hi,
The reason it breaks the WP Media uploader is because the plugin changes how includes_url() outputs.
This is how it should output:
https://www.example.com/wp-includes/
When the plugin is activated it changes to this:
Output: https://www.example.com/wp-includes
That causes the issue: https://d.pr/i/DYOK/SVMGJ33d
Cheers,
Magnus
(Co-Founder)Forum: Installing WordPress
In reply to: Upgraded to 3.0, posts not showing@natanrice informs me that you can also use
'post_type' => 'post'
instead of the category hack<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("post_type=post&paged=$paged"); ?>
Still sad that we have to modify all our themes to fix this… default should be post_type=post
Forum: Installing WordPress
In reply to: Upgraded to 3.0, posts not showingHello,
I can confirm the change in WP 3.0, and would say it is a bug. This has worked perfectly in 2.9.2 and previous versions.
This is the issue:
Most of our themes use index.php as the homepage in the themes, and often uses query_posts to fetch posts:
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("paged=$paged"); ?>
This works perfectly as homepage, but if you set a static home page in Settings > Reading and set a page as your posts page, then that posts page will not work properly.
Here is an example using TwentyTen with a modified index.php:
Settings>Reading: https://cl.ly/4b9c79e284917ebc38de
Homepage (About): https://cl.ly/ca801b7ac28403d1f3b2
Posts Page (Blog): https://cl.ly/d3cca61eaa5ca2335acfThe solution to this “feature” in WP 3.0 is to set the category parameter in the query like this:
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; query_posts("cat=-0&paged=$paged"); ?>
Now it works again! https://cl.ly/757da36f56113ed03608
It would be best if this was fixed in the WP 3.0.1 so we don’t have to modify a perfectly working query_posts in all themes.
Forum: Fixing WordPress
In reply to: WP 3.0 bug with pagination? (when using static page as homepage)Thanks for the help Nathan!
Using the blog page template as homepage was just an example. Canvas for example has a magazine and business page template, that lots of users use as static homepage. Making them mess around in files seems a hard way of doing this, especially as this functionality has been working up to WP 3.0.
I think this is a bug and it should be fixed ??
Forum: Fixing WordPress
In reply to: WP 3.0 bug with pagination? (when using static page as homepage)Thanks for replying Nathan!
I’ve tested your code, and still only get the first page to show. Used the code from your pastebin and added it to Blog page
https://cl.ly/a98cbe6240a4d1f5ffdb
All the pages show the first page still.
Forum: Fixing WordPress
In reply to: WP 3.0 bug with pagination? (when using static page as homepage)Make a page template in twentyten with this https://pastebin.com/St6h1ACV and setup that page as static front page and check pagenav
It shows page 1 even when you are on page 2 ??