-
Search Results
-
Topic: Gallery tweaks
Hi
I want to remove the keyline from around the gallery thumbnails on this page http://theimplantexperts.com/people/amanda/?preview_id=1340 see http://theimplantexperts.com/wp-content/uploads/2017/02/TRE_Cases2.jpg
Plus I want to remove the file names from the lightbox preview see http://theimplantexperts.com/wp-content/uploads/2017/02/TRE_Cases1.jpg
I am doing a category layout page for my site and one section has 3 category thumbnails (instead of 4 which there is space for)
Is there a way to centre these 3 thumbnail on the page so there isn’t a gap at the far right?
I tried adding a 3 column and then putting a text box in the middle one with the [product_categories number=”” parent=””] shortcode, but the resulting display is a squished version of the thumbnails instead of shifting them all to the middle alignment at full size.
Hey
I would like to get the full images on my shop archive page. At the moment it loads a generated thumbnail (450×450) on some images. Is there a way to do this?
Kind regards
Michael StormTopic: Magazine issue archive
Hi guys,
I’m building an online alumni magazine. The home page will always be the current issue, but I want to have “back issues” available too.
Example: The summer cover page: http://connection.cu-portland.edu/summer-2016/
Scrolling down that page gets you all of its content, but the menu now links to the current issue, here:
http://connection.cu-portland.edu
I thought I could do this in Enfold by swapping menus on the pages, but I can’t figure out if that’s possible.
My plan was going to be this:
1. build an issue with its own menu
2. when ready to build the next issue, make a new menu, assign it to a new cover page, then hang all the other pages from there
3. when ready, go to Enfold settings and change the home page from the previous issue to the new one
4. create an “Archive” page, put a thumbnail of each previous issue (still linked to its original menu) on there.
5. live happily ever after the end.Will that work? What am I missing that I can’t figure out how to do it?
Thanks in advance,
TomHi,
I am filling my client-job overview galleries with images, using the same saved template for every such page. Since yesterday, the thumbnails suddenly appear as squares when resized from images in portrait orientation, destroying the grid geometry along the way. Any idea how to correct this?
In private, I’ll provide you with the links to the last page showing correctly and the first one with failures.
Thanks for your help and kind regards,
JensHello
On my blog page only thumbnail, publication data as well as “read more” are displayed.
The preview text is missing. I have already tried all the settings to show the prewiew texts. I have also selected “Einstellungen/Lesen/Zeige im Newsfeed ganzen Text” – Without success.
What do I need to adjust?Thank you for your support.
This morning i updated the theme. let’s pass away the wordfence warning ( .https://kriesi.at/support/topic/wordfence-found-a-suspected-malware-in-an-enfold-php-file/#post-740608)
i’ve got another weird thing : image thumbnail on popped up avia editors won’t show. For exemple i’ve got a background image in a section block ; if i click on edit icon, a popup open, giving me ability to modify the section block config. But since this update, the image thumbnail doesn’t show the image i previously selected (and the red cross icon, to suppress the image from the background).
Some of you experimented the same issue ?
Cheers(and sorry for my bad english)
Topic: Custom Post Template Woes
Good morning,
I wonder if you can help. I’m sure I’m being utterly dense, but I can’t get my custom post type to display via a template file. So far I’ve done the following:
Created a custom post type called ‘Agent’ which is functioning well. My code is here:
// Register Agent Post Type function agent() { $labels = array( 'name' => _x( 'Agents', 'Post Type General Name', 'text_domain' ), 'singular_name' => _x( 'Agent', 'Post Type Singular Name', 'text_domain' ), 'menu_name' => __( 'Agents', 'text_domain' ), 'name_admin_bar' => __( 'Agents', 'text_domain' ), 'archives' => __( 'Agent Archives', 'text_domain' ), 'attributes' => __( 'Agent Attributes', 'text_domain' ), 'parent_item_colon' => __( 'Parent Item:', 'text_domain' ), 'all_items' => __( 'All Agents', 'text_domain' ), 'add_new_item' => __( 'Add New Agent', 'text_domain' ), 'add_new' => __( 'Add Agent', 'text_domain' ), 'new_item' => __( 'New Agent', 'text_domain' ), 'edit_item' => __( 'Edit Agent', 'text_domain' ), 'update_item' => __( 'Update Agent', 'text_domain' ), 'view_item' => __( 'View Agent', 'text_domain' ), 'view_items' => __( 'View Agents', 'text_domain' ), 'search_items' => __( 'Search Agents', 'text_domain' ), 'not_found' => __( 'Not found', 'text_domain' ), 'not_found_in_trash' => __( 'Not found in Trash', 'text_domain' ), 'featured_image' => __( 'Featured Image', 'text_domain' ), 'set_featured_image' => __( 'Set featured image', 'text_domain' ), 'remove_featured_image' => __( 'Remove featured image', 'text_domain' ), 'use_featured_image' => __( 'Use as featured image', 'text_domain' ), 'insert_into_item' => __( 'Insert into item', 'text_domain' ), 'uploaded_to_this_item' => __( 'Uploaded to this item', 'text_domain' ), 'items_list' => __( 'Agents list', 'text_domain' ), 'items_list_navigation' => __( 'Agents list navigation', 'text_domain' ), 'filter_items_list' => __( 'Filter items list', 'text_domain' ), ); $args = array( 'label' => __( 'Agent', 'text_domain' ), 'description' => __( 'Agent Post Type', 'text_domain' ), 'labels' => $labels, 'supports' => array( 'title', 'editor', 'thumbnail', 'post-formats', ), 'taxonomies' => false, 'hierarchical' => false, 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'menu_position' => 5, 'show_in_admin_bar' => false, 'show_in_nav_menus' => true, 'can_export' => true, 'has_archive' => false, 'exclude_from_search' => false, 'publicly_queryable' => true, 'capability_type' => 'post', ); register_post_type( 'agent', $args ); } add_action( 'init', 'agent', 0 ); add_action( 'init', 'build_agent_taxonomies', 0 ); function build_agent_taxonomies() { register_taxonomy( 'agent_location', 'agent', // The custom post type array( 'hierarchical' => true, 'label' => 'Agent Location', 'query_var' => true, 'rewrite' => true, 'show_ui' => true, 'show_admin_column' => true ) ); }I’ve tried to created a custom template by copying single.php from the Enfold parent theme (I’m using a child theme) and renaming it single-agent.php. I’ve reset permalinks and tired a few times but none of my changes appear to be having any effect.
Any help / slaps around the face would be appreciated!
Regards,
Ash
Topic: update on support request?
Hi guys,
just wondering if you have an update regarding the 2 posts below? Apologies, I am sure you guys are super busy as always. I just have the project due this week.
Thanks so much for your help!
hi guys, I’m using the masonry gallery with the lightbox activated, my question is, is there a way for that lightbox to show the thumbnails below the big image?
