htmlpie
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Pen] search buttonHi there,
Try this plugin:
https://ww.wp.xz.cn/plugins/add-search-to-menu/
The “Popup” style works best, it’s under Ivory Search -> Menu Search -> Header -> Style.Hope it helps!
Forum: Themes and Templates
In reply to: [Pen] Increase the size of my right sidebarHi there,
Sure, try this CSS:
@media only screen and (min-width:728px) { body.visible-sidebar-right #primary { padding-right: 370px !important; } #pen_right { width: 350px !important; } }It should be added here: Appearance -> Customize -> Additional CSS.
I think some other users also asked for such a feature, we may add it in the next version.
Forum: Reviews
In reply to: [Pen] Excellent ThemeThanks! π
Forum: Themes and Templates
In reply to: [Pen] Buy themeHi there,
There’s no other version, users can pay for the theme if they want, or if they need customizations.
Thanks for your suggestion. There are already multiple plugins for that, we’ll soon test the most popular ones to see if there is more to offer.
As for performance, it’s not the theme, most of the bad score is caused by JavaScript from other plugins, such as Google reCAPTCHA, DoubleClick, etc.
Forum: Themes and Templates
In reply to: [Pen] Add text to blog pageHi there,
Try this:
- Install a plugin such as “Widget Options” or “Widget Visibility”.
- Add a “Text” widget to the “Top” widget area with your introduction and so on.
- Limit its visibility to your “Blog” page.
Hope it helps!
Forum: Themes and Templates
In reply to: [Pen] UPDATED ON dateGreat!
Forum: Themes and Templates
In reply to: [Pen] ChangelogHi there,
It is in the “readme.txt“, under /wp-content/themes/pen.
Forum: Themes and Templates
In reply to: [Pen] Next post and Previous post linksHi there,
Now it is available as an option, it’s under Appearance -> Customize -> Content -> Full Content View -> Next/Previous.
Forum: Themes and Templates
In reply to: [Pen] UPDATED ON dateHi there,
We have added this feature! It is under Appearance -> Customize -> Content -> Full Content View -> Content Date: Updated.
Forum: Themes and Templates
In reply to: [Pen] Next post and Previous post linksHi there,
Right now it can only be added with plugins, but since it’s a good idea and very easy to implement, I think we can add it to our upcoming update which will be available in a few days.
Forum: Reviews
In reply to: [Pen] My favourite themeThanks!
πForum: Themes and Templates
In reply to: [Pen] Missing Continue Reading buttonHi there,
Please check this option, under the post editor: “Pen Options > List Views > Buttons → Read More”, it is probably set to “Hide”?
Forum: Reviews
In reply to: [Pen] Me encantoΒ‘Gracias!
πForum: Themes and Templates
In reply to: [Pen] How to accelerate the page?Hi there,
There are multiple ways to do that. There are free plugins for caching such as WP Super Cache and Autoptimize (don’t forget to enable caching and compression after installing and activating these plugins), image compression plugins such as Smush, and paid CDN services such as AWS and JetPack Site Accelerator.
In addition to those, you can also use OS extensions on your server such as Redis or Memcached, but only if you have a big website with lots of traffic.Hope it helps!
Forum: Themes and Templates
In reply to: [Pen] Unexpected behaviourThanks, so it’s a MU installation, interesting.
We’ll fix it soon, thanks for reporting this!
In case you can’t wait, this needs to be changed:
$url_home = is_multisite() ? network_home_url( false ) : home_url( false );
To just this:
$url_home = home_url( false );
Then it’ll be all right.You can find it in these files:
-
include/assets.php
include/html.php
partials/content-copyright.php