Forum Replies Created

Viewing 30 posts - 31 through 60 (of 94 total)
  • Author
    Posts
  • in reply to: Side Arrows on portfolio Items not shown #1152889

    Hi Ismael

    I don’t have blog posts, the problem with the left and right arrows I have is on portfolio items, for example:

    When I created the site, I had it, and after some updates of the theme there were gone.

    Strange is, that this happens only under the portfolio Menu “Musik Alben”. The others, “Fotogalieren” and “Videos” have the navigation.

    René

    in reply to: Side Arrows on portfolio Items not shown #1152272

    Hi Ismael

    Thanks for reply. Added the code, but unfortunately, Navigation is still not shown.

    René

    in reply to: social media buttons not showing on mobile #1147983

    the topic can be closed.

    in reply to: social media buttons not showing on mobile #1147813

    Solved! Rikard, you’re my hero! Thank you for the very fast & competent support everytime, which I think is a very good argument to use Enfold (with a lot of others, naturally ;)!
    René

    Cool. Thank you for resolving the problem so fastly. It works now on my installation.
    René

    Hi Yigit

    Thank you, I’ll try. What about future updates of enfold? Will I have the same problems again, or will this code now be integrated in Enfold Core?

    Thank you again, I will give an answer, if that code works in my installation.

    René

    got the same problem. Any solutions found?
    Thanks
    rené

    in reply to: Get Emails from DSGVO checkbox from enfold form #1021577

    Hi Mike
    Cerber Security Plugin blocks it. Thanks for your help.

    But anyway, that problem with the form, I only have by using the theme form together with the DSGVO policy. I get a E-mail, with sender adress ” (Email address hidden if logged out) ” and the message: “Ich stimme den Bedingungen zu, die in der Datenschutzrichtlinie dargelegt sind.: false”

    No similiar messages by using for example the plugin “contact form 7”. Just for saying.

    Best regards,
    René

    in reply to: Menu Overlapping Logo #900852

    Hi ZorgSaam

    Thanks for the css, it works perfectly!!
    René

    in reply to: Updating to version 4.2.1 fails #900411

    Ok. Now I found out MY mistake. There was a old code in the htaccess file, which kept the php version on 5.2. even when I changed it in the backend of my hoster. Ahhhh, so stupid!!!!
    I changed this, and now update 4.2.1 works fine!
    To everybody. Check the php version carefully!
    René the blockhead :(

    in reply to: Updating to version 4.2.1 fails #900404

    Went back to 4.2, and this works. Tried again with 4.2.1 – Fatal Error like before. Seems, I need to wait to the next version. Will try the same game with another website.

    in reply to: Updating to version 4.2.1 fails #900398

    Hi

    Also problem with update. Update from 4.2 to 4.2.1, Fatal Error:

    …./wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/shortcode-parser.class.php on line 2556

    PHP 5.6

    René

    in reply to: Page specific menu items and the search results page #879056

    Hi
    You can close this topic.

    Best regards,
    René

    in reply to: Page specific menu items and the search results page #878554

    Hi Rikard

    Thank you very much for trying to help me, but we found out that this plugin is not compatible with the mobile menu of enfold. So, anyway, I need a completely different solution.

    By the way for all of you which wants to use this plugin: it seems that it is no longer supported!

    René

    • This reply was modified 7 years, 11 months ago by baiker.
    in reply to: Page specific menu items and the search results page #878008

    Hi,
    I need to hide the menu items which are checked by the plugin. In the backend, there is the possibility to check the menu items for each page, post etc which should be shown or hide in the frontend.

    Best regards,
    René

    in reply to: Creating two different navigation menus #878006

    Hi,
    I need to hide the menu items which are checked by the plugin. In the backend, there is the possibility to check the menu items for each page, post etc which should be shown or hide in the frontend.

    Best regards,
    René

    in reply to: Creating two different navigation menus #877604

    Hi Ismael

    Tought, that could work, but this functions are comin’ from the plugin to add the hide_this_item class:

    /**
    		 * adds styles to the head of the page in frontend
    		**/
    		function psmi_hide_menuitems(){
    		
    			echo '<style type="text/css" media="screen">';
    			echo '.menu-item.hide_this_item { display: none !important; }';
    			echo '</style>';
    			
    		}
    		
    		
    		/**
    		 * adds 'hide_this_item' class to each checked menu item
    		**/
    		function psmi_add_menu_class( $items , $args) {
    			
    			$currentpage_items = get_post_meta(get_queried_object_id(), PSMI_TEXTDOMAIN.'_currentpage_items', true);
    			
    			if (!empty($currentpage_items) && $currentpage_items[0] !=''){
    				$psmi = Page_Specific_Menu_Items::get_psmi_defaults();
    
    				foreach ( $items as $item ) {
    					if ('show'== $psmi['items_defaultview'] && in_array( $item->ID, $currentpage_items ) ) {
    						$item->classes[] = 'hide_this_item '; 
    					}
    					if ('hide'== $psmi['items_defaultview'] && !in_array( $item->ID, $currentpage_items ) ) {
    						$item->classes[] = 'hide_this_item '; 
    					}
    				}
    			}
    
    			return $items; 
    		}

    Tried to replace by the nth child selector, but didn’t work unfortunately.
    René

    in reply to: Creating two different navigation menus #876066

    Dear Basilis

    Thank you for the quick response.

    Could you tell me, if the theme has some javascript which remove „hide_this_item“?
    Just to be able to tell the plugin developer that this is not the case.

    And I think, when he mentioned to add !important at the end of css declaration, he’s talking to css of the plugin, right?

    Thank you
    René

    in reply to: Page specific menu items and the search results page #876058

    Hi Rikard

    Thank you very much for the quick reply!

    The plugin works like this:

    In every page in the admin section, I can check a checkbox to decide, which menu item on the frontpage should be hided.
    Backend Possibilities

    See example http://halden.dieklangfabrik.ch/betagtenheim There, you see only 6 of 13. This to „simulate“ a multipage without being one.

    When you browse to http://halden.dieklangfabrik.ch/?s= you see all the menu items.
    Let’s say the first line till „Kontakt“ is Tree 1 and the second Tree 2, with some pages with the same name.

    Because the search page is generated by the theme, I don’t have the possibility to check the checkboxes in the backend. And I’d like to stay in the „simulated tree“. Is there a way to say by css, which item should be shown and which not? Sorry, I checked the code and didn’t find a way for this by myself, shame on me…

    Thanks for help.
    René

    • This reply was modified 7 years, 11 months ago by baiker.
    in reply to: Creating two different navigation menus #875223

    Hi
    I installed the above mentioned plugin “page-specific-menu-items” with wordpress 4.8.3, enfold 4.2. Works fine on desktop version, but not with the mobile Burger menu. There, every menu item is visible. The plugin works with “hide-this-item”. Could it be, that the plugin is not compatible with enfold??

    Here is the answer of the developper to some other user with the same problem:

    “The easy solution would be to add !important at the end of the css declaration. But then it might not work if hide_this_item class is removed by some javascript (that is the major problem with many javascript responsive menu plugins).”

    Don’t know, if that helps.

    Or any idea? Would appreciate to get a hint for a solution.
    Thanks
    René

    in reply to: Text next to logo #873613

    You’re the man, Ismael! Works. Perfect. Thank you very much for your help!
    René

    in reply to: Text next to logo #872999

    Hi Ismael

    thanks for the code. I can now put in the Title I want and the text is visible. Unfortunately, the logo is now not visible anymore (img src is missing). Small mistake in the code, I don’t see?
    Thank you for help
    René

    • This reply was modified 7 years, 12 months ago by baiker.
    in reply to: Text next to logo #870856

    Don’t know if this is the right place to jump into the discussions. On my page, the alt tag for the logo is not showing, only the “finger” to mark this is a link. My customer want to have a specific text, which is always showing. So I used the solution code:

    add_filter('avf_logo_alt', 'avf_change_logo_alt');
    
    function avf_change_logo_alt($alt) {
    	 $alt = "New Alternate Text Here";
    	 return $alt;			
    }

    It works, because I see on Page Resource, the alt tag is changed, but still not showing on scrolling over the logo. Could you help me?
    Thanks for help, didn’t find a solution by searching
    René

    in reply to: How to centre text in Socket #845728

    Worked, thanks for the solution. Even there’s a semikolon missing after center!

    in reply to: Burger menu problems with submenus #839818

    Hi Victoria. Glad to here that and can’t wait. Lot’s of customer websites got problems.

    René

    in reply to: Remove link on titles in Ajax portfolio #764754

    Thanks for this very helpful support, perfekt description! You’re the best :)

    in reply to: Edit content/text on password protected page #755130

    Hi Ismael

    Meanwhile, my solution was like that:

    1. Use the language plugin “loco translate”
    2. changed translation in german in my own words (because the site is only in german)

    So for me, the problem is solved on the startpage of https://www.dreamwhisperer.ch. (if you scroll down, you’ll see it)

    Thanks anyway for your help. I’m still a fan of Enfold!

    René

    in reply to: Edit content/text on password protected page #750653

    Hi
    In every thread I only found the solution to change text on password protected pages. But how can I change the text on the Blog Mainpage? I used for the blog homepage avia layout architekt and use the content element “Blog Beiträge” with an excerpt. On the Main Page there’s this text for protected content (german sorry):
    “Es gibt keine Kurzfassung, da diese ein geschützter Beitrag ist.” (see Page)
    I want to add something like “Please write me to send you a password” already here, and not only on the blog page itself.

    Thanks to give me advice where to change.
    René

    in reply to: Table Fields transparent #720612

    Great!! Thank you very much for giving me that solution!
    A happy René :)

Viewing 30 posts - 31 through 60 (of 94 total)