therabbitholewiki
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Ghost Lite] Paypal button in content area for all posts at onceThanks so much for taking the time to write.
I’ll just be honest, I am really a beginner, trying hard to do honor to your theme though.
To make sure I get that right, all I need to do is
1. add that string to the child theme’s single.php file or content-single.php2. Replace the first “//” with this (as is script code of the button copied from the inspector) :
3. what do I need to replace the second “//” with?
Thank you so much if youre taking the trouble to help me with this
Kinda surpised that a GoDaddy agent just notify me that there is plainly no cron job function with a Deluxe Managed wordpress plan, that only a Linux based cpanel would allow me to use a scheduled posting plugins
How common is that amongst website owners to not be able to use your app on a pretty standard hosting plan? Does this basically explain my issue ? Do I have another solution than full on moving my website to another platform? Thank you
Hi thanks for the reply
Heres a screenshot of the Cron job history as of now
Line in wp-admin.pho define(‘DISABLE_WP_CRON’, true); is still there
Pluggin is up to date. Still no sharing logs
I dont have access to cpanel with my hosting plan (Deluxe Managed WP with GoDaddy)
Do I have any alternative to make the plugin work? THank you
- This reply was modified 4 years, 4 months ago by therabbitholewiki.
- This reply was modified 4 years, 4 months ago by therabbitholewiki.
- This reply was modified 4 years, 4 months ago by therabbitholewiki.
- This reply was modified 4 years, 4 months ago by therabbitholewiki.
Thank you !!
Hi Nik,
thanks for your reply , figured out how to tweek the embed code so to display in one page up instead of 2 side by side. Thanks again for your time!
Great thanks!!
I would like to raise another question on this same topic if it’s fine with you.
The code you provided indeed adapts the ratio of the reader to the mobile screen which correct the previously mentionned issue,
only the iframe is fitting the two pages of the embeded book in the narrow vertical 9/16 ratio of a mobile device, which make it impossible to read
Is there a way to adjust the css so that the iframe is read one page at a time, taking the full plage of the screen and making them readable once again
(The internet archive’s previous book reader used to allow to choose between a 1 page or 2 pages emdeded code, as decribed in this article https ://en.support.wordpress.com/embedding-ebooks/ , but not anymore. Possible to customize the new code based on the previous model?)
If willing, thank you for looking into this, would mean a lot to me, this issue is kind of defeating to the purpose of the website i’m working on :/
Have a great week end. Sam
- This reply was modified 4 years, 8 months ago by therabbitholewiki.
- This reply was modified 4 years, 8 months ago by therabbitholewiki.
- This reply was modified 4 years, 8 months ago by therabbitholewiki.
Hi!
Thanks for your reply and offering your help, rang an alarm and probably spared me a catastrophy:p I was not aware of the necessity of a child theme in order to upgrade safely.
Which I did as well as transfering the files from the parent to the child theme and everything seems to be in order, main.css cannot be retrieved from the original, but as you said its probably meant to be that way, modified in the custom css feature to avoid this dependency in all events.Thanks again for the support!
Best of luck with your work
Hi Nik, thank again for bringing your attention my issue, I have found the solution I needed,
Here is the code in case you want to implement this customization option in future updates:
Open sidebar.php file and insert the code after this line: <div class=”sidebar__widget__container”>
Copy and paste this code:
<?php if( is_singular(‘post’) ) : ?>
<div class=”widget”>
<p class=”widget-title”>Filed under:</p>
<p><?php the_category( ‘, ‘ ); ?></p>
</div>
<div class=”widget”>
<p class=”widget-title”>Featured Image:</p>
<?php if ( has_post_thumbnail() ): ?>
<?php the_post_thumbnail(‘large’) ?>
<?php endif; ?>
</div>
<?php endif; ?>Best regards
Hi thanks for your reply,
No I am not talking about the recent posts, nothing to do with them
I need to output the featured image and the ”assigned categories” list (of any and all posts), in ITS sidebar; In the post’s sidebar INSTEAD of in the content
I’m building an encyclopedia, I have 350 different categories overall. As an example, one post/article can be found in 1 or as many as 50 different related categories. These specific categories are so-called ”assigned” to the post before publishing by checking them one by one, so they can be found in the respective category pages with other related posts
As you can see in the link provided previously, a random post/article of my website, this ”assigned categories ” list I am speaking of is ouputed as a WHITE TRANSPARENT BOX in front of the featured image, visible right as you land on the page
I need the featured image and this ”assigned categories” list to be outputed respectivelly in the first and second position of the sidebar as if they were widgets, (Such as a”Featured image in sidebar widget” and ”assigned categories in sidebar widget” for example)
I did try a widget called ”Featured image in sidebar” that worked but then fatally crashed my website
What code should I add to the theme to allow me to make this rather basic operation and modification to the display of all my posts at once?
The result would be the featured image and ”assigned categories” list in the right hand sidebar rather than in the content of the article, and the articles content (in my case embedded pdf viewers) first to appears in the content
Hope I made this clearer, thank you for your time and patience !!
Forum: Plugins
In reply to: [Posts in Page] Insert featured image into sidebar widgetFollowing
Forum: Themes and Templates
In reply to: [Ghost Lite] Posts thumbnail and categories in sidebar*Not the thumbnail, the featured image
Forum: Themes and Templates
In reply to: [Ghost Lite] Posts thumbnail and categories in sidebarHi Nik thanks for you replies, Did not change when adding this code to the Customize ”additionnal css” section
About the thumbnail and category list, this is not exactly what i meant, I was not speaking of the whole category list and recent posts:p i’ll try to explain better. When you go into a post the first thing you see in the container is a LARGE thumbnail with a transparent white box in front of it containing the categories associated with THAT post. Is it possible to have these two (The thumbnail and categories of THAT post) in the sidebar instead? In such a way that the first thing you see in the container is the actual content of the post/article? Thank you!!