singhal1992
Forum Replies Created
-
Thanks Leo, will do. Either ways, I have been able to create the shortcode to fetch the date and get the required data. Would you be able to help with the CSS?
Hello, how can I login into premium support, I don’t think I have an account, but I do have the license key
Forum: Themes and Templates
In reply to: [GeneratePress] Generate press category page taking long to loadThanks David. The hosting provider came back and, they found out that there were high RAM usage problems on the server on which the site is hosted.
The issue seems to be resolved now. thanks for your help again 🙂
Forum: Themes and Templates
In reply to: [GeneratePress] Generate press category page taking long to loadI am using this plugin, I do some delays for database queries seemed to be caused by the gp-premium plugin. Please find the screenshot link.
Forum: Themes and Templates
In reply to: [GeneratePress] Generate press category page taking long to loadHello David – thanks for the response. Is there a way to narrow down the issue to the host or if it is related to wordpress?
I checked with the host (siteground), and they seem to suggest that the issue could be with how wordpress is setup, maybe a plugin.Forum: Themes and Templates
In reply to: [GeneratePress] Restrict the height of the sidebarMade it to work by adding as a before_footer hook. But it didn’t quiet add it in the container div, so had to add the css classes within the hook.
<div class="inside-article"> <div class="hfeed site grid-container container grid-parent"> <h3 class="section-title">Home Appliances</h3> <div class="wpsp-table">[wp_show_posts id="3140"]</div> <div>Â </div> <h3 class="section-title">Kitchen Appliances</h3> <div class="wpsp-table">[wp_show_posts id="3146"]</div> </div> </div>Does this look okay ?
- This reply was modified 5 years, 8 months ago by singhal1992.
Forum: Themes and Templates
In reply to: [GeneratePress] Restrict the height of the sidebarHi, thanks for the response. As suggested, I tried creating a hook. So, the intent is that the Home Appliances Section & the Kitchen Appliances Section should take the complete width of the container after the main content.
Even with this hook, the sidebar area is taken. Am I using an incorrect hook?
Forum: Themes and Templates
In reply to: [GeneratePress] Dispatch wp post mobile align horizontalMarking resolved. Thanks again for the help 🙂
Forum: Themes and Templates
In reply to: [GeneratePress] Dispatch wp post mobile align horizontalunderstood, thanks.
Forum: Themes and Templates
In reply to: [GeneratePress] Dispatch wp post mobile align horizontalOne last question, on the desktop view for align, is there a way to reduce the width and height of the image. And since there would be more horizontal space for the title and excerpt, they should align with the image in the reduced height.
Forum: Themes and Templates
In reply to: [GeneratePress] Dispatch wp post mobile align horizontalWorked like a charm. Thanks for all the help David 🙂
Forum: Themes and Templates
In reply to: [GeneratePress] Dispatch wp post mobile align horizontalThanks, that’s what I was going to ask you. The meta is already set to below title on the list. This css is overriding that:
.generate-columns-container article .entry-header, .wp-show-posts-entry-header { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: reverse; -ms-flex-direction: column-reverse; flex-direction: column-reverse; }I think this is intended to keep the category above the title in the magazine grid. Is there a way to disable this for the lists other than the magazine grid ?
Forum: Themes and Templates
In reply to: [GeneratePress] Dispatch wp post mobile align horizontalDid some modifications to the css you sent.
@media(max-width: 420px) { .wpsp-align .wp-show-posts-single { margin-bottom: 0px !important; } .wpsp-align .wp-show-posts-inner .wp-show-posts-image { max-width: 120px; margin-right: 1em; } .wpsp-align .wp-show-posts-inner .wp-show-posts-entry-summary { display: none; } .wpsp-align .wp-show-posts-inner .wp-show-posts-entry-title{ font-size: 16px; } }Can you please check if this looks okay?
- This reply was modified 5 years, 8 months ago by singhal1992.
Forum: Themes and Templates
In reply to: [GeneratePress] Dispatch wp post mobile align horizontalHi David, thanks for the response.
The css has helped with the alignment on mobile per as I wanted. A couple of more things I want (to make it similar to the one here: https://www.kitchenarena.in/)
1. The image seems to be zoomed in, I want the full image and occupying 1/3rd of the width of mobile while preserving the aspect ratio (I understand that the height can be different then for different posts – which is ok).
2. Date should appear below the title
3. The font of the title should be reducedideally, same as the one here: https://www.kitchenarena.in/
Thank you