Help !!! I have a problem with loading the website in wordpress, created with Zoom-lite.
In the background the website works, but at the front end it does not.
It sticks with the preloader of zoom-lite.
I have already tried numerous things, clearing cache, deactivating some plugins. I do not understand how it is that in the background as administrator the website works and on the front end it does not.
Also tried different browsers.
I am working with version 6.7.2 of wordpress
zoom-lite version 1.1.0
PHP 8.4
Thanks in advance for any help.
]]>Ciao a Tutti!
Vorrei poter cambiare il font predefinito nel CSS in quanto ho notato che ogni volta che crea un nuovo paragrafo apre una nuova SPAN CLASS contenente il font che ho impostato io, compresa dimensione ed allineamento. Alla lunga quindi il codice risulta pieno di queste voci.
Ho cercato il file CSS di riferimento, ma pur avendo corretto la voce lì non riesco a visualizzarlo (idem dimensione ed allineamento) nel momento in cui creo una nuova pagina!
Qualcuno sa come posso fare? Ovviamente poi, una volta che l’ho reso funzionante su una pagina nuova, provvederei a ripulire tutte le altre!
Ciao e grazie
Ben
]]>Hello,
Is there any way to get a sticky post to show its full content while the normal posts show excerpts only?
]]>Anyone seen the issue where the masonry doesn’t ‘bunch up’ and is aligned in rows in WordPress 5.5? I gather WP upgraded the masonry.js file in that version and it’s affected other themes, but I can’t see that referenced in this one.
]]>hello, new here.
I use zoom lite, works fine!
But under the header i placed a slider ( in this case an image slider.)
But there stays a border line (white) between the header and the slider.
How and where can i remove that one.
Dunno how to insert a picture, otherwise i could show it her.
My posts are shrunk down to a quarter of the page on mobile devices. Some are correct, others are really small. Is this a setting I’m missing?
]]>Hello all, I am in the process of making an affiliate website, while uploaded products through Woozone direct import the images seem to be zoomed in way to much. Does anyone know how I can fix this ?
]]>The sticky post is shown as flat text without the added URL links, paragraphs etc… is there a way to disable this and include the URL, paragraphs etc in the sticky post on the main page?
]]>Hi, I would like to insert pagination in category blog. I have found some plugins and solutions without plugin where I had to insert some code in index.php, but where?
I tried different ways but the pagination appears after footer and not after the content.
Can you help me?
lg
]]>Hi,
Is it possible to easy change the Fonts in this theme?
thx.
I recently switched to Zoom Lite from another theme. With the other theme, I was able to add multiple photos using all of the layout options: tiled mosaic, circles, square tiles etc. With Zoom Lite, the only layouts that work for multiple images are individual images, thumbnail grid, and slideshow. When I add the multiple photos, only the first one added shows in the preview and on the site. In edit, all the pictures show. The two I need the most are tiled mosaic and circles. Are these not supported or is CSS code needed to display them correctly?
Thanks for the assist
Peggy
Hi,
When using the menu on the mobile site. You can’t choose a subpage under a menu item. When you select the subpage, this page is loaded and the menu is closed, so the underlying pages are not accessable.
I came across a similar item on this forum that is over a year old, saying that it is solved now. But we still experience this problem. Do you have a solution?
Regards, Eric
]]>Found another bug in zoom-lite. Seems that when editing a post, the wp-pointer associated with the post format section doesn’t get translated properly, which means that it pops up with the content as ‘undefined’, and can never be permanently dismissed. Bit annoying, as it pops up every time you edit a post.
I think the fix is to re-order the point at which the script gets enqueued, so that it comes after the localisation:
function zoom_post_formats_script_handle( $hook ) {
// Only load on posts, pages
if ( !in_array( $hook, array( 'post.php', 'post-new.php' ) ) ) return;
$localized_array = array( 'gallery_count' => zoom_gallery_count() );
// Check first before Enqueue WP Pointer
$dismissed = explode( ',', (string) get_user_meta( get_current_user_id(), 'dismissed_wp_pointers', true ) );
if ( ! in_array( 'zoom_post_format_pointer', $dismissed ) ) {
wp_enqueue_style( 'wp-pointer' );
wp_enqueue_script( 'wp-pointer' );
$localized_array['is_rtl'] = is_rtl();
$localized_array['title'] = esc_html__( 'ZOOM Theme' , 'zoom-lite' );
$localized_array['content'] = esc_html__( 'The following Post Formats will make you more easily to display image gallery, video or music player.' , 'zoom-lite' );
}
wp_localize_script( 'zoom-post-formats', 'zomm_lclz', $localized_array );
// Moving this line down to here stops the undefined wp-pointer popping up
wp_enqueue_script( 'zoom-post-formats', get_template_directory_uri() . '/inc/admin/assets/js/post-formats.js', array( 'jquery' ) );
}
]]>
Hi Zoom-Lite developers,
I noticed that the “The entry was posted in” functionality doesn’t work for custom post types/taxonomies – it only works for ‘standard’ posts. It’s straightforward to fix – in inc/theme-loop.php, you can modify the first few lines of the zoom_single_post_meta() code to be:
function zoom_single_post_meta() {
global $post, $post_id;
$post_type = $post->post_type;
// get post type taxonomies
$taxonomies = get_object_taxonomies($post_type);
$taxonomy = $taxonomies[0];
$category_list = get_the_term_list( $post_id, $taxonomy, '', esc_html__( ', ', 'zoom-lite' ) );
/* translators: used between list items, there is a space after the comma */
$tag_list = get_the_tag_list( '', ', ' );
and it seems to work pretty well. You might want to include this fix in a future release.
]]>Hi,
I want to enable lazy load for images, but the spinner icon that’s displayed while the image loads is really messy and distracting. Is there a way to turn it off? I tried using the Jetpack Lazy Loading instead, but it messages with the masonary layout of the front page (once the images are loaded, the masonary layout doesn’t ‘bunch up’ and you’re left with gaps between them.
Thank you!
]]>Hi,
One thing the ZoomLite theme is missing is the ability to display the category description at the top of the list of posts that fall under that category (e.g., https://www.pumpkinbeth.com/category/daffodils/).
Is there a quick way to enable this?
]]>How can I get the email address I’ve added to the top bar, to be a link. I’ve tried adding the tag but it’s being ignored.
]]>Greetings, again,
Can you please provide us with the proper CSS to bold hyperlinks in the main body text? We’re having a problem making the hyperlinks bold (and underlined) via our child theme. We searched in main.css and found these codes but for some reason, we cannot seem to get the links to bold or underline:
a {
text-decoration: none;
}
a:focus {
outline: thin dotted;
}
a:hover,
a:active { /* Improves readability when focused and also mouse hovered in all browsers people.opera.com/patrickl/experiments/keyboard/test */
outline: 0;
}
a img {
border: 0;
}
AND
/* Links */
a,
a:visited {
font-weight: 400;
}
After adding what we would normally do to bold hyperlinks, we’re stumped:
a {
text-decoration: underline;
font-weight: bold;
}
Thank you!
]]>Greetings,
Can you please tell me how to make the header images slideshow have a FADE TRANSITION ONLY?
In other words, we would like the images to fade from one into the other and NOT any of the other transitions.
Thank you!
]]>I’m playing with layout for a new blog, but I’d like the title image to be much shorter. I’m having trouble finding the CSS element I can use to control this. Can anyone help me identify how to make the image shorter?
]]>Submenu is extremely hard to see when selected on a mobile device. Can you please offer a solution?
]]>Hi, probalby an easy thing: how can i establish an featured post on my site.
I add a new post on my dashboard – and where and how can i establish this post as an featured post?
Thanks for helping an freshman. ??
]]>I am using the Zoom Lite theme for my client’s site.For the header I am using the image slider option and have the logo on the top bar. When I go to mobile, the top bar disappears as well as the logo.
There are options to show the logo in the appearance menu but only if I choose a display other than image slider, but I want to use the image slider design.
How can I show the logo on the mobile site with the image slider option on?
]]>I want to be there
Next to the mobile menu icon, add the word ‘menu’
Can you help me?
Thank you
Hello!
Thank you for the great Zoom Lite theme that we use for our Swedish blog.
We have been able to change language to Swedish in all but one location.
How do we change ”Posted on” to another language?
Could you please help us?
Kind regards from Sweden,
Anna and Nicklas
Hello!
I really love your theme! Very convenient and flexible, but I had a problem with the translation. I translated into Russian all ~ 570 lines, but on the website the English text “Posted he” in the list of records still is an eyesore. Is it possible to make this inscription translatable?
Hello, I can’t seem to figure out which class to edit in my child theme to center the logo image at the top of the page. I don’t have a title or tagline. Any ideas would be appreciated.
Thank you!
]]>Hello,
i like this theme but I am having a problem with it. i uploaded an image that is 120 pixels wide. it is displaying full width (stretched) in the WYSIWYG editor. Even if I click the edit button and it shows the image is only 120 pixels. but when I come back to the editor it is still huge/stretched. it shows normal (120 pixels) in the front end from a browser but for some reason it is huge/stretched in the editor.
I had another person log on to wordpress and look at it from a different computer and they see the same thing.
What could cause this and how can i fix it?
thanks!
This theme looks amazing on every device I’ve tried except iphone it’s not wrapping to 1 column with sidebar layout. I’ve tried pc desktop resize all browsers, android phone and tablet, windows phone, iphone 4 and customer has iphone 5s and tried the online iphone viewport emulator. All perfectly responsive for no sidebar layouts. 2 col post grid layout also responsive (one column on the iphones). On the iphone devices the header image and menu (hamburger fine), footer 3->1 col fine. Only sidebar layout section not wrapping (seems to stay at 2 col no matter what I do both portrait and landscape). Left col does focus tried both left and right sidebar layouts, but right col stays on the right.
Tried changing viewport meta tag to <meta name=”viewport” content=”width=device-width, initial-scale=1″> which makes it possible to scroll over to 2nd right col in sidebar layout. Tried adding css @media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) section to child theme and media-queries.css (just in case) which works for another theme I use and the following css to force to test (working 1 col on every device except iphones):
#zoom-theme-main {float: none;min-width: 100%;width: 100%;display: flex;flex-direction: column;}
#primary.site-content.page-with-sidebar-left {float: none;display: block; min-width: 100%; width: 100%;order:1;padding: 10px !important;}
#secondary.widget-area.leftside {float: none;display: block;min-width: 100%; width: 100%;height:auto; order:2;padding: 10px !important;}
Any suggestions on what to try next would be very appreciated.
]]>I have been trying to do edits to my theme’s CSS and am having issues… I set up a child theme so that I can make edits in that, but they still won’t reflect on my website. When I use Dev Tools I can track down the source of the elements I’m trying to edit and it’s showing ‘main.min.css’ as the source not ‘main.css’. When I go to ‘main.min.css’ It is just a huge mess of conglomerated CSS and is impossible to navigate… any idea as to what is going on here?
]]>