Forum Replies Created
-
AuthorPosts
-
Hi,
You can start new threads here – https://kriesi.at/support/forum/enfold/#new-post. If there are any content you would not like to share publicly, please feel free to add that content into private content field and it will be only visible to you and us, moderators :)
Best regards,
YigitHey!
@flavio1963 I replied to your thread here – https://kriesi.at/support/topic/logo-large/
Let us continue there :)Regards,
YigitHey Flavio1963,
What exactly is the issue?
Please post us your login credentials (in the “private data” field), so we can take a look at your backend.Login credentials include:
- The URL to the login screen.
- A valid username (with full administration capabilities).
- As well as a password for that username.
- permission to deactivate plugins if necessary.
Best regards,
YigitHey Formgeven!
Please refer to this post – http://kriesi.at/documentation/enfold/hide-menu-itemselements-on-mobile/ :)
Cheers!
YigitHi,
Not at all, we are always happy to help :)
I do not think someone wanted to hack you. If they wanted to hack or do harm to your site, they could have done other things like resetting your database from WP dashboard. I believe it is mistakenly added by someone however i still believe that someone is not from our team. We are extremely careful when we need to login to our users websites :)
Let us know if you have any other questions or issues!
Best regards,
YigitMerhabalar Metin! :)
Thanks for contacting us!
You can check out this screenshot to find your purchase code – http://kriesi.at/wp-content/uploads/2013/09/registration_steps.jpg and register to our forum here – https://kriesi.at/support/register/. After that, you can start a new thread under Enfold sub forum :)
Cheers!
YigitHi!
You can also try following
.sentence_01* { font-style: normal!important; text-decoration: none!important; }Cheers!
YigitHi,
They show up fine on my end, attached a screenshot in private content field.
Please flush browser cache and refresh your page a few times – http://wiki.scratch.mit.edu/wiki/Hard_Refresh
Best regards,
YigitMerhabalar,
Rica ederim :) Baska her hangi bir sorunuz veya sorununuz olursa lutfen tekrar iletisime gecmekten cekinmeyin :)
Best regards,
YigitHi,
I see that code however they are not the same with the one i removed from Quick CSS field. I removed following
body{ display: none!important; }and Jordan suggested following
#top .all_colors strong { background-color: none!important; }The one Jordan suggested removes background color from Strong tagged elements while the one i removed from Quick CSS simply hides the whole Body.
Best regards,
YigitHi,
To be honest, i really do not think one of our team members added the code. I cannot see that code in other thread and i am pretty confident that my teammates would know better not to add such code. All of our moderators have good experience with CSS and they would know that code would hide the content.
I am sorry that you felt that way about our support. We always try to be helpful as we can. I am pretty sure we will be able to change your mind about our support in future if you need any assistance or questions though :)
Best regards,
YigitHey!
I believe they are WP admin logins as they are not working for authentication. Screenshot below :)
Best regards,
YigitHi Winfried!
You can simply go to – https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?ref=Kriesi to purchase a license then when you register to our support forum, links will be visible so you can refer to my post above and update the theme :)
Let us know if you need further assistance
Regards,
YigitHey!
@hautzeit Your website looks great :) One thing i noticed is that menu overlaps logo before scrolling. If you start a new thread we can help you with it :)Best regards,
YigitHi,
Yes, i can see the thread however there is nothing concerning body of your website so i doubt if it was someone from our team who added the code.
I went to Enfold theme options > General Styling and adjusted colors on “logo area”. Please review your website
Best regards,
YigitHi,
“Authentication required” to go to your login page. Can you please post those credentials here privately as well? :)
Best regards,
YigitHi!
You had following code in Quick CSS field in Enfold theme options > General Styling tab
body{ display: none!important; }I removed it. Please review your website now
Best regards,
YigitHey!
You are welcome!
For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you :)Best regards,
YigitHi,
@bitojoe I replied to your thread here – https://kriesi.at/support/topic/woocommerce-cart-shortcode/. Let us continue there :)Best regards,
YigitHi,
Glad you figured it out!
Let us know if you have any other questions or issues :)Best regards,
YigitHi!
Please add !important rule to the code as following
h1, h2, h3, h4, h5, h6 { text-transform: none!important; }Best regards,
YigitHi,
Please replace ‘fontello’ in the code with font name in Enfold theme options > Import & Export – http://imgur.com/qZ39D4s
Then edit one of your pages, add Icon element under Content Elements tab of Advanced Layout Builder to your page, edit your element and hover on your icon to find charcode – http://i.imgur.com/fMFBJMF.png and replace ‘ue800’ with that charcode.
If that does not help, please post temporary admin logins here privately so we can apply the changes for you :)
Best regards,
YigitHey rikv,
Please make sure you are using a child theme – http://kriesi.at/documentation/enfold/using-a-child-theme/ and then add following code to Functions.php file of your child theme in Appearance > Editor
function avia_logo($use_image = "", $sub = "", $headline_type = "h1", $dimension = "") { $use_image = apply_filters('avf_logo', $use_image); $headline_type = apply_filters('avf_logo_headline', $headline_type); $sub = apply_filters('avf_logo_subtext', $sub); $alt = apply_filters('avf_logo_alt', get_bloginfo('name')); $link = apply_filters('avf_logo_link', home_url('/')); if($sub) $sub = "<span class='subtext'>$sub</span>"; if($dimension === true) $dimension = "height='200' width='300'"; //basically just for better page speed ranking :P if($logo = avia_get_option('logo')) { $logo = apply_filters('avf_logo', $logo); if(is_numeric($logo)){ $logo = wp_get_attachment_image_src($logo, 'full'); $logo = $logo[0]; } $logo = "<img {$dimension} src='{$logo}' alt='{$alt}' />"; $logo = "<$headline_type class='logo'><a href='".$link."'>".$logo."$sub</a></$headline_type>"; } else { $logo = get_bloginfo('name'); if($use_image) $logo = "<img {$dimension} src='{$use_image}' alt='{$alt}' title='{$logo}'/>"; $logo = "<$headline_type class='logo bg-logo'><a href='".$link."'>".$logo."$sub</a></$headline_type>"; } $logo = apply_filters('avf_logo_final_output', $logo, $use_image, $headline_type, $sub, $alt, $link); return $logo; }Best regards,
YigitHi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
.rtl .news-excerpt { padding-right: 50px; }Best regards,
YigitApril 17, 2017 at 7:31 pm in reply to: "Parsi Date" plugin conflict with Enfold Farsi Translation #778882Hi dear Sadegh,
Glad you found another plugin and thanks for sharing :)
Let us know if you have any other questions or issues!Best regards,
YigitHey!
Please change the code to following one
function avia_cart_count(){ global $woocommerce; $count = $woocommerce->cart->cart_contents_count; if ($count > 0) { $avia_count = sprintf(_n(' %d', $woocommerce->cart->cart_contents_count, 'woothemes'), $woocommerce->cart->cart_contents_count); return "<span class='counter'>/ ".$avia_count."</span>"; } } add_shortcode( 'cart_count', 'avia_cart_count' );Best regards,
YigitHey Charlotte,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
.av-masonry-date { display: none; } .av-masonry-entry .av-masonry-entry-title { font-size: 18px; color: #ff0000; } .av-masonry-entry { visibility: visible; opacity: 1; } .avia_desktop.avia_transform3d .av-masonry-entry.av-masonry-item-loaded .av-inner-masonry { -webkit-animation: none; animation: none; }Best regards,
YigitHey!
Please add following code to Quick CSS as well
@media only screen and (max-width: 1300px) and (min-width: 1120px) { .logo a { max-width: 60%; top: 20px; }} @media only screen and (max-width: 1119px) and (min-width: 990px) { .logo a { max-width: 35%; top: 25px; }}Cheers!
YigitHi Andrew!
Thanks for contacting us!
It seems like purchase code you provided is invalid. Please refer to this screenshot – http://kriesi.at/wp-content/uploads/2013/09/registration_steps.jpg and find your correct purchase code :)
Best regards,
YigitHey Ahmad,
You posted your question in pre-sale thread, which is fine, we can try to help you here but for the next time, please go to Enfold sub forum and start a new thread there – https://kriesi.at/support/forum/enfold/ :)
Can you please post FTP and WP admin logins here privately so we can look into it?
Best regards,
Yigit -
AuthorPosts
