Forum Replies Created
-
AuthorPosts
-
Hey keeprain,
Can you please provide a link to the site and the page you are having an issue with.
Best regards,
Jordan Shannon- This reply was modified 7 years, 10 months ago by Jordan Shannon.
Hey meganverasolve,
Please see the following image for recreating the news page header:
Best regards,
Jordan ShannonHey alliancepp,
This is possible using a full-width color section. An example of how this works:
Add a color section then set the height to at least 75% of the browser height. Place a google map element plus a text block below. Apply a unique id to the color section in the Section ID field. Use “custom-section” for example. Add this in the Quick CSS field.
#custom-section section.av_textblock_section {
position: absolute;
top: 0;
left: -10%;
background: rgba(0,0,0,.5);
width: 60%;
height: 100%;
padding: 20%;
}#custom-section .container, #custom-section .template-page {
padding: 0;
}You can add all the text content inside the text block element.
Best regards,
Jordan Shannon- This reply was modified 7 years, 10 months ago by Jordan Shannon.
March 7, 2017 at 8:02 pm in reply to: Blog Posts redering mobile or not full width on desktops #757214Hi,
Yes you post it via the private content box. I am not currently seeing it.
Best regards,
Jordan ShannonHi,
Self hosted videos normally don’t have the loop option by default, but you can use the video shortcode and add that feature to it. Please see the following doc:
https://codex.wordpress.org/Video_ShortcodeBest regards,
Jordan ShannonHey jenzai,
Can you please provide a link to the site in question.
Best regards,
Jordan ShannonHey lampenschirm,
Is this a self-hosted video, or is it being pulled from Vimeo, YouTube, etc?
Best regards,
Jordan ShannonMarch 7, 2017 at 7:42 pm in reply to: Blog Posts redering mobile or not full width on desktops #757200Hey cfrerecks,
Would you be able to provide your admin information so we can log in and look into this further?
Best regards,
Jordan ShannonHey jimbeamkentucky,
Did you add the image via the featured image section on the bottom right of the page or another method?
Best regards,
Jordan ShannonHi,
We are glad you were able to get this working. If you need additional help please contact us.
Best regards,
Jordan ShannonHi,
No problem. I am glad this was able to to taken care of for you. If you need additional help, please let us know.
Best regards,
Jordan ShannonHi,
Is the above login info still active? It is not working for me.
Best regards,
Jordan ShannonHi,
Please try adding this to quick css to remove the space around the image.:
ul.sub-menu{
padding:0px !important;
}#top #header .avia_mega_div .sub-menu li{
padding-top:none !important;
}Best regards,
Jordan ShannonHi,
Great! I am glad you were able to get this worked out.
Best regards,
Jordan ShannonHi,
I am glad that this was able to get worked out for you! If you have any additional questions please don’t hesitate to contact us.
Best regards,
Jordan ShannonHi,
We look forward to hearing the update, if you need added help from our end please let us know.
Best regards,
Jordan ShannonHi,
No if don’t have any intentions of showing a page of posts listed then there is no problem with leaving that section blank.
Best regards,
Jordan ShannonHi,
Do you know the rough english translations of the text? That way I have an idea of what to search for.
Best regards,
Jordan ShannonMarch 7, 2017 at 12:36 am in reply to: Enable search within menu pages, not just blog entries #756673Hi,
I am glad the initial issue was able to be worked out for you.
As for displaying the page results first, you can try adding this into functions.php:
add_filter(‘posts_orderby’,’my_sort_custom’,10,2);
function my_sort_custom( $orderby, $query ){
global $wpdb;if(!is_admin() && is_search())
$orderby = $wpdb->prefix.”posts.post_type ASC, {$wpdb->prefix}posts.post_date DESC”;return $orderby;
}In the script above search results are ordered by post type in ascending order (e.g. page then post), and then ordered by post date in descending order.
Best regards,
Jordan Shannon- This reply was modified 7 years, 10 months ago by Jordan Shannon.
Hi,
In the settings>reading section on the dashboard when you set blog to the post listing page that is a setting native to WordPress so it overrides the other settings imposed on the page by ALB or Enfold Theme Options.
Best regards,
Jordan ShannonHi,
I need to know the class/ids of the elements I am targeting in order to give you the most accurate answer on how to center them via css.
Best regards,
Jordan ShannonHi,
Apologies for the late reply.
I am happy that you were able to get this worked out.
Best regards,
Jordan ShannonHi,
Are you able to load the Advanced Layout Builder at all? Please test. If not I would recommend trying to deactivate plugins to see if one is preventing it from loading. We need the ALB to load before we can troubleshoot the image slider.
Best regards,
Jordan ShannonHi,
Have you tried adding the code posted here – http://kriesi.at/documentation/enfold/how-to-add-an-orderorderby-option-to-the-blogpost-sliderportfoliomasonry-grid-element/ and tried ordering posts manually?
Best regards,
Jordan ShannonHi,
To display your posts in alphabetical order, you would have to add this to the functions.php file:
function foo_modify_query_order( $query ) {
if ( $query->is_home() && $query->is_main_query() ) {
$query->set( ‘orderby’, ‘title’ );
$query->set( ‘order’, ‘ASC’ );
}
}
add_action( ‘pre_get_posts’, ‘foo_modify_query_order’ );Let me know if this works for you, or if you need additional help.
Best regards,
Jordan ShannonHi,
We apologize for the troubles, we will try to ensure that there are no issues with future updates moving forward. If you need any additional help, please don’t hesitate to let us know.
Best regards,
Jordan ShannonHi,
I am glad this was able to be fixed for you! If you need any additional help please let us know!
Best regards,
Jordan ShannonHi,
I am glad this will able to to be fixed for you.If you need any additional help, please let us know.
Best regards,
Jordan ShannonHi,
To edit “You Are Here” you want to edit within the root folder: themes>enfold>framework>php>class-breadcrumb.php and search “You are here” to find the 2 2instances of this text.
To edite “Show Details” you want to edit within the root folder: themes>enfold>config-woocommerce>config.php and search “Show Details” to find the 1 instance of this text.
Best regards,
Jordan ShannonHi,
These files can’t be located within the editor. They actually have to be edited in the theme’s root folder.
Best regards,
Jordan Shannon -
AuthorPosts