htmlpie
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Pen] Unexpected behaviourHi there,
You should check whether you have the correct address: WP backend -> Settings -> General.
Hope it helps!
Forum: Themes and Templates
In reply to: [Pen] UPDATED ON dateSure!
In the meantime, you can add this to that CSS:
#main .posted-on time.updated:not(.published):before { content: " Updated: "; }Forum: Themes and Templates
In reply to: [Pen] UPDATED ON dateHi there,
Absolutely, try this CSS:
#main .posted-on time.updated { display: inline-block !important; margin-left: 0.5rem; }It can be added through Appearance -> Customize -> Additional CSS.
Hope it helps!
PS: I think we can add this to the new update.
Forum: Themes and Templates
In reply to: [Pen] Blank screen, unable to config Pen themeHave you also enabled WP_DEBUG and WP_DEBUG_LOG? If so, is there any error message?
Forum: Themes and Templates
In reply to: [Pen] Infinite Scroll mnot workingIt just makes the vertical scrollbar unnecessary, therefore no JavaScript
window.scrollevent and no AJAX request to load the next page. The theme needs an improvement here, in the next update we’ll make the default pagination buttons visible when there’s no scrollbar.Forum: Themes and Templates
In reply to: [Pen] Infinite Scroll mnot workingRight, what about the page zoom? Have you tried the
CTRLand0to reset it to 100%?
It’s obviously not the theme, and not Firefox either, it is working, something is definitely wrong with your Firefox.Forum: Themes and Templates
In reply to: [Pen] Infinite Scroll mnot workingYes, it’s Firefox; reaching the end of the page, Loading indicator appears, loads 4 pages now, nothing seems to be missing, the WP pagination also indicates 4 pages. Are you saying there’s no Loading indicator either? or it appears but then there is no new post? Also, are you logged in? maybe the posts you are expecting to see are only drafts? not published yet.
PS: Maybe it is too much zoom out, so much that it removes the right scrollbar? try pressingCTRLand0, it’ll reset the page zoom back to 100%, maybe it’s just that.Forum: Themes and Templates
In reply to: [Pen] Infinite Scroll mnot workingThanks, those are just warnings, you can ignore them all, including that one, error messages are red and they have like a red “stop” icon. Right now, there’s a “Welcome” post which is sticky, and the Loading indicator is there too, there’s no error message, and it loads the second page pretty quickly, and after that there’s no more pages so when I scroll down it displays just the footer. Everything is looking good!
Forum: Themes and Templates
In reply to: [Pen] Infinite Scroll mnot workingAwesome! please don’t remove that plugin. Right now there’s no sticky post so no way to check. Would you please add a sticky post and check the “Console” tab again? (CTRL+SHIFT+K) there should be some error messages there.
(You may need to refresh the page once the Console appears)Forum: Themes and Templates
In reply to: [Pen] Center Site Title with Tagline displayedHi there,
It’s by design, for the logo, but when there’s none I think we need to make that so, we’ll take care of this in the next update.
In the meantime, this CSS should help:
body.pen_header_alignment_center #pen_header.pen_logo_hide #pen_site_title a .site-title { text-align: center; width: 100%; }Should be added through Appearance -> Customize -> Additional CSS.
Hope it helps!
Forum: Themes and Templates
In reply to: [Pen] Infinite Scroll mnot workingHi there,
Sorry, I beg to differ, it is working fine with widgets in the footer and also with sticky posts; of course, just noticed one weird behaviour here with sticky posts, it appears they are included more than once but it’s not related to this issue, and we’ll fix this in the next update very soon.
The problem here is the “https”, you need to either install one of those plugins, which are totally free, and avoid “http” connections, or add some “redirection rule” to your .htacess file (not recommended) to redirect all the visitors to “https”, or remove the “https” by going to Settings -> General and replacehttpswithhttpfor both “WordPress Address (URL)” & “Site Address (URL)” (not recommended at all).In order to make sure: Right click on the page and select “Inspect element…”, you’ll see a new panel with multiple forms and options; select the “Console” tab and then try scrolling down, of course with “http”, after a second you’ll see such an error message:
Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at ...Try the same page with “https” and you’ll see that it is all working fine.
Also, here’s a sample code to add to the .htaccess file, if you prefer that option.
<IfModule mod_rewrite.c> RewriteCond %{HTTPS} !=on RewriteRule ^(.*) https://%{SERVER_NAME}/$1 [R,L] </IfModule>Hope it helps!
Forum: Themes and Templates
In reply to: [Pen] Blank screen, unable to config Pen themeHi there,
It’s definitely not the theme, unless you have modified some of the files? Anyway, you need to enable the WP_DEBUG and WP_DEBUG_LOG through your
wp-config.phpand also install a plugin such as WP Debug Log Viewer to see if there’s any error message. I’d also disable all the “Active” plugins and enable them one by one to see if one of them is breaking the Customizer, it’s usually that.Forum: Reviews
In reply to: [Pen] A modern, cool themeThanks! 🙂
Forum: Themes and Templates
In reply to: [Pen] Infinite Scroll mnot workingTurns out it’s a SSL issue, you should install one of these plugins to avoid HTTP:
https://ww.wp.xz.cn/plugins/really-simple-ssl/
https://ww.wp.xz.cn/plugins/ssl-insecure-content-fixer/Basically, when you access that site through HTTP and it tries to load the next page through HTTPS your browser does not like it and blocks the request.
Hope it helps!
Forum: Themes and Templates
In reply to: [Pen] Infinite Scroll mnot workingHi there,
It’s probably a plugin, possiblly some cache plugin.