Forum Replies Created
-
AuthorPosts
-
Alright, thanks, i thought so, at least.
Hello,
thanks for replying, i mean isn’t there still any possibility that posts build with the layout builder will show the feature image without an extra image box, because the screenshot from the options dialog from maximaker (“Single post with big preview image(featured image”), reply #773311) implied that this feature was intended. Or is that just a misunderstanding or a “typo”?
To put it in a nutshell, why is there a possible setting, when it does work on this way? Or is this a setting concerning just pure word posts (not build with layout builder)? Do you know what i mean?
Thx MarkusHello, is there something new about this options item? Is this a mistake or does it yet work, even though it’s not intended?
thx MarkusJanuary 20, 2017 at 4:46 pm in reply to: Hiding codeblock with custom css for all ALB doesn't work #736568Alright, thanks
January 20, 2017 at 3:03 pm in reply to: Hiding codeblock with custom css for all ALB doesn't work #736510Hello Yigit, hm, that work reasonably, but that means the custom code for all ALB elements doesn’t work and i can’t address these elements with a defined class (codeblock in this case)? You know, this codeblock container just has the sense to contain a shortcode. If i want to get rid of him i also could delete the codeblock and paste the shortcode somewhere else.
MarkusHello Yigit,
now i want to reproduce the error and copied your code again in the child function.php and now the page is loading without error, sorry. Probably my computer was the guilty part.
But as good, as bad, the social icons doesn’t appear underneath the logo.
I added your code as it was at the very end of the functional.phpfunction av_move_social(){ ?> <script> jQuery(window).load(function(){ jQuery(".html_header_sidebar .av-sidebar-social-container").detach().prependTo('.html_header_sidebar #header .container .inner-container') }); </script> <?php } add_action('wp_footer', 'av_move_social');
Also i tried it now to copy it to the parent enfold function.php (parallel), but then i got an 500 error.
MarkusHello Yigit, thanks for the code, but i tried to add it to my enfold-child function.php and it broke the page. I tried several <?php and ?> combinations, but no luck. Can you tell me what is missing? My function.php is the folllowiing:
<?php /* * Add your own functions here. You can also copy some of the theme functions into this file. * WordPress will use those functions instead of the original functions then. */ /*m_code Adding Google Font*/ add_filter( 'avf_google_heading_font', 'avia_add_heading_font'); function avia_add_heading_font($fonts) { $fonts['Merienda'] = 'Merienda'; return $fonts; } add_filter( 'avf_google_content_font', 'avia_add_content_font'); function avia_add_content_font($fonts) { $fonts['Source Sans Pro'] = 'Source Sans Pro:400,600,800'; return $fonts; } /*m_code: Trial Adding FOOTER fullwidth section DIV*/ /*--> footer.php: <div id="yourfooterwidgetid">*/ //register_sidebar(array('name'=>'Fullwidth Footer Widget',)); /*m_code: Adding HEADER fullwidth section DIV*/ //add_action( 'ava_after_main_menu', 'enfold_customization_header_widget_area' ); //function enfold_customization_header_widget_area() { // dynamic_sidebar( 'header_extra' ); //} // m_code: Enable shortcodes in text widgets add_filter('widget_text','do_shortcode'); add_action('in_widget_form', 'awts_get_widget_id'); function awts_get_widget_id($widget_instance) { // Check if the widget is already saved or not. if ($widget_instance->number=="__i__"){ echo "<p><strong>Widget ID is</strong>: Pls save the widget first!</p>" ; } else { echo "<p><strong>Widget ID is: </strong>" .$widget_instance->id. "</p>"; } } /* // m_code: * add option to edit elements via css class */ add_theme_support('avia_template_builder_custom_css');
Thanks Markus
January 18, 2017 at 9:59 am in reply to: Hiding codeblock with custom css for all ALB doesn't work #735211Hi Rikard, the border and background are just for the showing effect and yes, i’ve done the steps in the alb posting/tutorial, this line of code is in my enfold-child functions.php (first i also tried it in enfold/functions.php):
/* // add option to edit elements via css class */ add_theme_support('avia_template_builder_custom_css');
and on this screen you see the class i’ve given the codeblock on the homepage.
But nothing happen. And i don’t know why.
br MarkusJanuary 17, 2017 at 12:15 pm in reply to: Hiding codeblock with custom css for all ALB doesn't work #734662Hello Rikard,
that wasn’t your best hint ;-), that makes the most content (except the sidebar menu and the footer) disappearing (screen).
But that’s not the real point, the very special question is, why does the “custom css for all ALB” function do not work or how can i get it to?
Or do i something wrong with some syntax?
best MarkusHello Yigit,
Here is a screenshot. I mean the red marked place with “social icons” underneath the logo and it’s a boxed layout.
Screen
br MarkusJanuary 16, 2017 at 11:35 am in reply to: Hiding codeblock with custom css for all ALB doesn't work #733978Hello Rikard, i commented off that function/hook in enfold functions.php, also added it to enfold-child functions.php, added a codeblock to a page and this css to the quick field:
.codeblock {
display: none !important;
border:10px solid #ff0000 !important;
background-color: #ff0000 !important; }with no effect. The coeblock still is visible: http://web1528.fge1.5hosting.com/untersiller.com/ (The white block on top).
By the way, why isn’t that function enabled by default?
br MarkusJanuary 14, 2017 at 9:18 pm in reply to: Turning on "custom css for all ALB" support crashed my local WP/"framework" #733658Ok, i deleted the closing ?> tag at the end of enfold-child function.php now.
Solved now.
Sorry and thanks- This reply was modified 7 years, 11 months ago by markkus2.
January 14, 2017 at 8:02 pm in reply to: Turning on "custom css for all ALB" support crashed my local WP/"framework" #733639Hello, now i replaced the functions.php files with the very beginning files and it worked again, but when i put this code in the enfold-child function then it’s breaked again (before it has worked …):
<?php /* * Add your own functions here. You can also copy some of the theme functions into this file. * WordPress will use those functions instead of the original functions then. */ /*m_code Adding Google Font*/ add_filter( 'avf_google_heading_font', 'avia_add_heading_font'); function avia_add_heading_font($fonts) { $fonts['Merienda'] = 'Merienda'; return $fonts; } add_filter( 'avf_google_content_font', 'avia_add_content_font'); function avia_add_content_font($fonts) { $fonts['Source Sans Pro'] = 'Source Sans Pro:400,600,800'; return $fonts; } ?>
January 8, 2017 at 2:51 pm in reply to: Changing menu custom text color doesn't work in the child options page #730858Hello Guenni, Rikard,
thank you for suggestions, especially for the menu screen options (you live and learn), but i’ve found the evildoer, it was an entry in the header/transparency options tab, there was a setting for the Transparency menu color which overruled everything else.
Thank you very much anyway.
MarkusDecember 1, 2016 at 8:41 am in reply to: Sidebar displayed beside all content and up to the top (not under the content) #719130Oh yes Rikard, you’re absolutely right. Great, great, great. Where can i give you the laurel wreath?
For to say it with the norwegian: Huh, huh, huh, huh …
Thx a lot
MarkusNovember 30, 2016 at 1:15 pm in reply to: Sidebar displayed beside all content and up to the top (not under the content) #718722Hello Andy, thanks for the care, but no, at the moment the page is only local.
But it’s anyway a general question. I want to know how i can get a sidebar/widget is beside the content (maincontent?) of a page?
Do i have to handle it with the shortcodes on every single page or is there a change to get it “WP-like, classical” with the settings of the pages? I tried all different settings on the pages like “attributs, layout/sidebar settings, etc.” on the right side of the backend, but just get the sidebar (Archive) underneath the page content like in screen 1:
http://media.virtual-earth.de/oracle/oracle/ma/screen/screen1.jpg
But i want them abosolutely beside the content.:
http://media.virtual-earth.de/oracle/oracle/ma/screen/screen2.jpg
Thanks Markus- This reply was modified 8 years ago by markkus2.
June 22, 2016 at 3:03 pm in reply to: Enfold Consulting Demo – removing the darkblue gap/bar on top of the menu/header #652130Oh, an own goal.
Thanks MarkusMay 10, 2016 at 11:00 am in reply to: Problem solution for missing switch between visual and plaintext editor #629795Hello Rikard, this is not a problem request, i just wanna tell the forum another solution for this strange editor-problem. I primary wanted to reply that to an older request in the Enfold forum, but the request already was closed. But thanks for asking. And yes, i then created a new admin user and the problem has gone. I don’t know exactly why, but in this case it had something to do with the users code it seems..
April 22, 2016 at 1:33 pm in reply to: layerslider width 80% with fixed sidemenu on the left side don't work!! #619910Hi, already found something:
@media (max-width: 900px){
div#layerslider_3 {
width: 100% !important;
}that works
April 22, 2016 at 1:28 pm in reply to: layerslider width 80% with fixed sidemenu on the left side don't work!! #619898Hello Andy, thanks for the hint, this doesn’t do it at all, but this is working:
div#layerslider_3 {
width: 78% !important; //curiously, because sidebar maincontent is 20 | 80%
float: right;
}!!! But, can you perhaps add something which makes the slider come back to 100% again in smartphone view?
And for all who can’t find the quick css field, it’s the one in the Enfold Child Options at the bottom under general sytling with the palette icon.
cheers
MarkusHello Yigit,
yes i know, but before i didn’t got the same appearance, so i tried to have a look on the demo backend. Meanwhile i’ve got it.
Thanks again
MarkusApril 20, 2016 at 3:21 pm in reply to: Realtime Information about general problems "WP 4.5 update"! #618372Hello Yigit, i read the popular ones until page 7, if you can provide the link i will do it.
By the way, can you tell me where the forum link “Add new thread/post” on the support page has gone?
MarkusApril 17, 2016 at 3:08 pm in reply to: Portfolios (accordeon) with Ajax doesn't show the updated (changed) entries/text #615801Hello Ismael, many thanks to have a look. So far i know already, but the problem was, how do i get the markup into the add. editor, the shortcode wand hasn’t worked last week but now all of a sudden it works.
Thank you
MarkusApril 15, 2016 at 1:04 pm in reply to: Portfolios (accordeon) with Ajax doesn't show the updated (changed) entries/text #614763Hello Ismael, i see, when i switch to the ajax mode i have to insert the accordeon separately in the Add Preview Text editor. I’ve tried that now with “insert theme shortcode” button (the little magic wand), but it doesn’t generate any markup?! And also switching generally to the standard editor only shows an empty editor field. So the question is, how doe i get the code into the Add Preview Text editor?
Thanks
MarkusApril 13, 2016 at 10:42 am in reply to: Portfolios (accordeon) with Ajax doesn't show the updated (changed) entries/text #612545Hello Rikard, i saw now it’s the missing text in the tab “Vorschau-Text hinzufügen”, but that’s also strange, because i’ve added the accordeon tabs in the content element and haven’t deleted the “Vorschau” text, perhaps on some but it’s gone on all portfolios.
But the problem is, and i’ve tested it on a fresh local installation, if you delete the toggles/accordeons and add some new, the “Vorschau-Text hinzufügen” field still shows the old entries. So the question is, how do i get the markup for the accordeons back in this field which seems neccesary for the ajax mode?
Thanks Markus
April 12, 2016 at 10:26 am in reply to: Portfolios (accordeon) with Ajax doesn't show the updated (changed) entries/text #611779Hello Rikard,
here’s the admin login.
thx MarkusSeptember 3, 2015 at 4:53 pm in reply to: Footer with 3 columns but splitted into 1/4 1/4 2/4 witdhs #497791Thanks great.
Hello, the problem has been solved meanwhile. Some reloadings has wiped away the problem.
And at the moment i only have a local installation, but i’ll come back if it occurs again.
Thanks Markus -
AuthorPosts