-
Search Results
-
Topic: Image in Diagonal Section?
Hi,
I’m messing around with an idea that I wonder if it’s possible.You can see from the attached link that I’ve sort of started it, but I want the top of the image to be included somehow.
Is this possible, I’ve tried making the colour transparent, I wondered if it was possible to make a diagonal top border or something.As always, help appreciated.
Cheers!
With all due respect, this forum is more than just support from you to us. It is a way for us to diagnose, work together, solve issues and find new opportunities.
In one of the the threads just shut down, we had determined that an issue with LayerSlider was potentially not related to the Enfold updates. Just telling everyone to have the latest versions of everything and close the thread stops productive sourcing of issues and reasoning, especially when we are waiting for answers from you. Communication is a good thing. Shutting down users that are trying to help solve problems and help others within this community sets a bad tone.
I have bought a lot of licenses and support extensions and we recommend Enfold to a large base, but one of the things that makes me question continuing that is when the forum leads arbitrarily determine the validity of our conversations, especially when they are product related. We were not disparaging your products, nor your service, nor working against you. We were trying to solve an issue that was affecting others until we did hear from you. Yes, it is your forums, but embrace the fact that as purchasers of your software, we also can interact together to solve problems and create new opportunities.
Hi,
https://kriesi.at/support/topic/moving-the-description-of-product-category-of-the-page-down/ showed me how to move the category description to the bottom of the page. But now the pagination / page numbers of the category seem to far away from the products. Is it possible to show it in the following order:
1) products
2) pagination
3) category descriptionTopic: h1 in full screen slider and
Hi,
könnt ihr mir bitte helfen,
a) wie ich meinen Text im fullscreen slider (HP) als H1 setzen kann?
b) wie ich ein Image als fullscreen image ohne Rand setzen kann und auch hier den Text als H1 definieren kann?
c) die Subkategorien kleiner anzeigen kann unter Top level Kategorie “Beratung Change Mangement”. Top Kategorie ist hier nicht verlinkt.
Vielen herzlichen Dank!I’m having issues with my website. Google is being blocked from fetching my site completely. I contacted my website server, and they said that the issues are not on their end. When I pull my site up, the page will come up but I’m not able to scroll down. Only the top part of the page shows. My website server support said that it may have something to do with the htp.access files. They said that it looks like they have been altered. I have never altered those files. So, I don’t understand how that can happen. I posted yesterday about this issue, but didn’t get any response. I’m posting it again because this is very urgent to get my site back up. My seo ranking is steadily declining and my ppc campaign got canceled due to the site not working. I don’t know how long my site has been messed up. Also, the images that are blocking google are associated with my facebook business page. I don’t understand how they can be blocking google when they aren’t even on my website. I do have a link to my facebook business page on my website homepage though. Please help.
Topic: Problem with Masonary
I have been asking a question quite long. Please this is urgent reply soon.
please answer this question
thanksAnother Share.
After reading these posts:
https://kriesi.at/support/topic/open-form-in-a-lightbox-popup/
https://kriesi.at/support/topic/inline-content-in-magnific-popup/
These solutions were difficult.
The current problem with Enfolds is that only certain AVIA LAYOUT BUILDER – LAYOUT ELEMENTS allow for a custom Developer ID.
The issue with each of theses layout elements (Colour Section, Grid Row, Tab Section ) is that they are all full width and interfere with the side bar position. Not good if you are adding a linline popup link. And the popup content has to be inside a ‘Colour Section’.
I should note that you can add a custom ID to a [CODEBLOCK] [/CODEBLOCK], However this didn’t work either as paragraphs <p></p> were stripped from the HTML and replaced with inverted commas “” loosing any paragraph styling.
AVIA LAYOUT BUILDER would be more flexible if we had the ability to add theme support for custom ID on layout elements, the same way you currently add theme support for ‘Custom Css Class’…
add_theme_support('avia_template_builder_custom_css');Any way, I though I would share my quick [SHORTCODE] solution with the community.
Enfolds out of the box already supports lightbox modal windows for videos and images. This solution allows you to display large amounts of formatted text like; terms and conditions, privacy statements, warranty etc. in a lightbox modal window.
Lets get started.
As Magnific Popup is installed natively with Enfolds Theme, we don’t need to load any other assets.
——————————————————————————-
PHP
In your child-theme functions.php file add the following code:/*------------------------------------------------------------------------------- INLINE POP UP ENABLER -------------------------------------------------------------------------------*/ function inline_popup_enabler(){ ?> <script> (function($){ $(window).load(function() { $('.inline_popup').magnificPopup({ type:'inline', midClick: true }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'inline_popup_enabler'); /*------------------------------------------------------------------------------- SHORTCODE - INLINE POST CONTENT POP-UP [mfp_post_popup post_slug_id="" popup_id="" link_text="" custom_class=""] -------------------------------------------------------------------------------*/ function mfp_post_popup_shortcode( $atts ){ //default values extract( shortcode_atts([ 'post_slug_id' => '', 'popup_id' => '', 'link_text' => 'hello', 'mfp_hide' => 'mfp-hide', 'custom_class' => 'mfp_popup_content' ], $atts ) ); //get post content $pop_slug = get_post($post_slug_id); $content = apply_filters( 'the_content', $pop_slug->post_content ); //output post content into the footer before the closing body tag - content is hidden add_action('wp_footer', function() use($content, $popup_id, $mfp_hide, $custom_class) { echo sprintf( '<div id="%s" class="%s %s">%s</div>', $popup_id, $mfp_hide, $custom_class, $content ); }); //output popup link return sprintf( '<a class="inline_popup" href="#%s">%s</a>', $popup_id, $link_text ); } add_shortcode( 'mfp_post_popup', 'mfp_post_popup_shortcode' );——————————————————————————-
CSS
In your child-theme/style.css file add the following CSS:.mfp_popup_content { position: relative; background: #ffffff; padding: 40px; width: auto; max-width: 600px; margin: 100px auto; overflow: auto; }This CSS class is all you need to style the popup window. As this is a custom_class you can change the name of the class in the code or override the default class name by adding custom_class”” to the shortcode. and style to your hearts content. Rounded Corners, Colour Border, Coloured Background etc. etc.
——————————————————————————-
CONTENT
First create a new PAGE or POST with the content you want to display in your popup and publish.
Take note of the post ID, which can be found in the URL address bar at the top of the browser http://domainname.com/wp-adminpost.php?post=——————————————————————————-
SHORTCODE
On your page where you want to popup the content, add the following inline [SHORTCODE]:[mfp_post_popup post_slug_id="" popup_id="" link_text=""]post_slug_id=””
Enter the ID of the post that you want as content in your popup window.
Example:post_slug_id="5"popup_id=””
Enter a custom identifier for the popup. For multiple popup’s on one page, use a different identifier for each popup_id. Don’t use spaces in the ID name. You can use underscore _ and dash – in place of spaces.
Example:popup_id="popup_1"link_text=””
Enter the text ( spaces are allowed ) that will be the active link for the popup.
Example:link_text="open me"EXAMPLE:
Some custom content here with in line link to[mfp_post_popup post_slug_id="5" popup_id="popup_1" link_text="open me"]in a popup window.——————————————————————————-
EXPLINATIONThe code does 3 things:
1. Adds a jQuery script to the footer that enables Magnific popup for elements with a class .inline_popup
2. Creates the active link where the [SHORTCODE] is inserted
<a class=”inline_popup” href=”#popup_id”>link_text</a>3. Creates a hidden div in the footer that contains the content from the post_slug_id
<div id=”popup_id” class=”mfp_hide custom_class”>content</div>——————————————————————————-
TWEAKSYou may find that not all custom theme style colours translate into the magnific popup modal window. However by adding some additional css styles you can target the elements again.
.main_color blockquote { border-color: #c3512f; }Change this by add additional CSS to your child-theme’s style.css file
#top .mfp_popup_content blockquote { border-color: #c3512f; }That’s about it.
Please Share
Viewing 30 results - 83,521 through 83,550 (of 142,730 total)
