Forum Replies Created
-
AuthorPosts
-
hi i need help with the search icon again please.
it is really bad that it is not an option i can activate.
So please login
activate the search icon under 989 px
align the cart icon
below 500 px the search icon and the cart icon and the menu should be under the logo.
all icons in one line all the time.cachify icon is on the right corner (to empty cache)
i am really up to quite with enfold, because everything had to be coded.
but i this get fixed you save my website from being changed. ;-)August 1, 2016 at 12:32 am in reply to: Header Mobile Menu activation 990px but the menu does not hide #667084Please give me a hint where my mobile search icon was going. ;-) I feel this is relation.
August 1, 2016 at 12:25 am in reply to: Header Mobile Menu activation 990px but the menu does not hide #667081the modifications are in the child theme in the style css.
August 1, 2016 at 12:22 am in reply to: Header Mobile Menu activation 990px but the menu does not hide #667080screenshot below
July 4, 2016 at 3:41 pm in reply to: mobile view: search icon and cart icon should on the right #656625nice thank you very much. case closed.
July 2, 2016 at 7:49 am in reply to: mobile view: search icon and cart icon should on the right #656045thats it. thank you very much.
possible to center/resize/fit the logo also?July 2, 2016 at 6:43 am in reply to: mobile view: search icon and cart icon should on the right #656020Not okay. i changed the figures to get all in line to:
/*mobile: search, cart icon under the logo*/
@media only screen and (max-width: 600px) {
.responsive #header_main .inner-container, .responsive .main_menu {
min-height: 60px;
}
#top #menu-item-search {
top: 30px;
}
.cart_dropdown_first {
position: absolute;
top: 30px;
left: -120px;
}
#advanced_menu_toggle, #advanced_menu_hide {
margin-top: 6px;
margin-right: 20px;
}
}
I checked with the responsive view in safari: alt cmd + r and firefox alt + cmd + m
it was viewed nice.So now i opened the webpage on mobile firefox and chrome on android and see it is not in line.
Then i switched to chrome desktop view (also a responsive view) and got all icons in line.
In firefox i did not get them in line.So i altered CSS to get it nice on mobile browser (not the mobile desktop view inside the desktop browser).
/*mobile: search, cart icon under the logo*/
@media only screen and (max-width: 500px) {
.responsive #header_main .inner-container, .responsive .main_menu {
min-height: 60px;
}
#top #menu-item-search {
top: 55px;
}
.cart_dropdown_first {
position: absolute;
top: 58px;
left: -115px;
}
#advanced_menu_toggle, #advanced_menu_hide {
margin-top: 6px;
margin-right: 20px;
}
}
Result: mobile view on firefox desktop (mac): http://awesomescreenshot.com/06b5zsfed5
So how get them inline in every browser?Same with the @media only screen and (max-width: 500px):
On mobile (horizontal) 500px is nice. On desktop it needs 600px to have the logo inline and not overlapping.
I use the stretched layout!PS: Is it possible to get the logo in the middle and alter the size?
When the icons are below the logo it should be possible.PPS: maybe possible have a default solution for all users directly in the enfold settings.
place search-, cart- and the mobile menu button-icon in one line below the logo.July 1, 2016 at 10:19 am in reply to: mobile view: search icon and cart icon should on the right #655626thank you very much that helped a lot.
to use the head space more i thought of:
……..(search icon)
logo (menu icon)
……..(cart icon)- This reply was modified 8 years, 4 months ago by Tobias-B-Conrad.
May 17, 2016 at 4:35 pm in reply to: logo is squeezed on new nginx server with google page speed active #633828Solved by adding following to the directives:
location /{FOLDER} {
client_max_body_size 100M;try_files $uri $uri/ /{FOLDER}index.php$is_args$args;
# Add trailing slash to */wp-admin requests.
rewrite /wp-admin$ $scheme://$host$uri/ permanent;location ~* \.(jpg|jpeg|png|gif|css|js|ico)$ {
expires max;
log_not_found off;
}location ~ \.php$ {
try_files $uri =404;
include /etc/nginx/fastcgi_params;
{FASTCGIPASS}
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
#fastcgi_param PATH_INFO $fastcgi_script_name;
fastcgi_intercept_errors on;fastcgi_temp_file_write_size 10m;
fastcgi_busy_buffers_size 512k;
fastcgi_buffer_size 512k;
fastcgi_buffers 16 512k;
fastcgi_read_timeout 1200;
<tmpl_if name=’php’ op=’==’ value=’hhvm’>error_page 500 501 502 503 = @phpfallback{FOLDERMD5};</tmpl_if>}
}<tmpl_if name=’php’ op=’==’ value=’hhvm’>
location @phpfallback{FOLDERMD5} {
client_max_body_size 100M;
try_files $uri =404;
include /etc/nginx/fastcgi_params;
{PHPFALLBACKFASTCGIPASS}
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
#fastcgi_param PATH_INFO $fastcgi_script_name;
fastcgi_intercept_errors on;fastcgi_temp_file_write_size 10m;
fastcgi_busy_buffers_size 512k;
fastcgi_buffer_size 512k;
fastcgi_buffers 16 512k;
fastcgi_read_timeout 1200;
}
</tmpl_if>pagespeed on;
pagespeed FileCachePath /var/ngx_pagespeed_cache;
#pagespeed FetchHttps enable,allow_self_signed;
pagespeed XHeaderValue “Powered By ngx_pagespeed”;# let’s speed up PageSpeed by storing it in the super duper fast memcached
pagespeed MemcachedThreads 1;
pagespeed MemcachedServers “localhost:11211”;# Filter settings
pagespeed RewriteLevel CoreFilters;
pagespeed EnableFilters collapse_whitespace,remove_comments;# Ensure requests for pagespeed optimized resources go to the pagespeed
# handler and no extraneous headers get set.
location ~ “\.pagespeed\.([a-z]\.)?[a-z]{2}\.[^.]{10}\.[^.]+” {
add_header “” “”;
access_log off;
}
location ~ “^/ngx_pagespeed_static/” {
access_log off;
}
location ~ “^/ngx_pagespeed_beacon$” {
access_log off;
}
location /ngx_pagespeed_statistics {
allow 127.0.0.1;
deny all;
access_log off;
}
location /ngx_pagespeed_global_statistics {
allow 127.0.0.1;
deny all;
access_log off;
}
location /ngx_pagespeed_message {
allow 127.0.0.1;
deny all;
access_log off;
}
location /pagespeed_console {
allow 127.0.0.1;
deny all;
access_log off;
}May 10, 2016 at 7:53 am in reply to: Comments and related entries missing when post edited in advanced editor #629688easy solution comes here:
Style in advanced editor and save.
change to standard editor and save.
That brings you comments, related posts, …April 21, 2016 at 5:08 pm in reply to: arange post entrries: instead of alter the archive.php add a function #619265sorry fixed by the plugin author.
April 21, 2016 at 4:24 pm in reply to: arange post entrries: instead of alter the archive.php add a function #619245April 21, 2016 at 4:17 pm in reply to: arange post entrries: instead of alter the archive.php add a function #619239Also the insering of this code does not do the job! Because the filter in the menu is not filtering anymore. just viewing all the post entries.
$posts = query_posts($query_string . ‘&orderby=name&order=asc&posts_per_page=-1’);I need to talk to the search and filter plugin developer parallel and refere to this post.
April 1, 2016 at 11:16 am in reply to: widget area on the same level of the main menu (logo left, menu right) #606593okay one more thing:
Responsive mode should start 990 px and not 769 px.
i did it already on page see privat: (i do not know how)
http://awesomescreenshot.com/0335r9mr21April 1, 2016 at 10:38 am in reply to: widget area on the same level of the main menu (logo left, menu right) #606577thank you very much. done half.
- This reply was modified 8 years, 7 months ago by Tobias-B-Conrad.
April 1, 2016 at 1:39 am in reply to: widget area on the same level of the main menu (logo left, menu right) #606417ava_inside_main_menu ich kann das aber nicht umsetzen.
add_action( ‘ava_inside_main_menu’, ‘enfold_customization_header_widget_area’ );
function enfold_customization_header_widget_area() {
dynamic_sidebar( ‘header’ );
}March 14, 2016 at 5:45 pm in reply to: generelle WooCommerce Produkt Vorlage, Produktbild auf die ganze Breite #597895Hi Andy,
we did is so far. please give me a last hint will need this also for future client webpages using enfold.
but only if i can present my clients a nice shop and a theme with good support.
the woo page helps me nothing.March 14, 2016 at 3:45 pm in reply to: generelle WooCommerce Produkt Vorlage, Produktbild auf die ganze Breite #597792no it is not like i want:
product picture on the left and description on the right
and below the main description should be full width, is the goal.
The product picture should be 70% width and the short description 30%if you look on the screen shot and on the webpage it is not the same:
how it should be and how it is:
http://www.awesomescreenshot.com/image/1078750/cdb3de24bf26859d6b78d6fd4d46af79this is how i only get it.
http://www.awesomescreenshot.com/0255pcc567—
so the change from the normal product detail page to the page i like, is a bigger picture and the product long description full width below the picture and the short description (both in one row)This would be fantastic
March 12, 2016 at 5:39 pm in reply to: generelle WooCommerce Produkt Vorlage, Produktbild auf die ganze Breite #597229to be responsive css at the moment (+ width: 100% !important;):
/*Produktbild gross*/
@media only screen and (max-width: 989px) {
.single-product-main-image.alpha {
width: 100%;
}
.single-product-summary {
display: inline-block;
width: 100% !important;
}
}@media only screen and (min-width: 989px) {
.single-product-main-image.alpha {
width: 80%;
}
.single-product-summary {
display: inline-block;
width: 100%;
}
}March 11, 2016 at 2:39 pm in reply to: generelle WooCommerce Produkt Vorlage, Produktbild auf die ganze Breite #596887Thank you Andy,
i need some more alignment of the “woocommerce-tabs wc-tabs-wrapper” which should be direct below the picture please.
http://awesomescreenshot.com/0255pcc567this is the CSS used in the screenshot:
/*Produktbild gross*/ @media only screen and (max-width: 989px) { .single-product-main-image.alpha { width: 100%; } .single-product-summary { display: inline-block; } } @media only screen and (min-width: 989px) { .single-product-main-image.alpha { width: 60%; } .woocommerce-tabs .wc-tabs-wrapper { display: inline-block; } }
- This reply was modified 8 years, 8 months ago by Tobias-B-Conrad.
hehe hoho es hat geklappt
December 9, 2015 at 5:28 pm in reply to: generelle WooCommerce Produkt Vorlage, Produktbild auf die ganze Breite #549888jippi, thanks andy
merry christmas to me.
one more pleas
how to deactivate product picture to open in popup?
Picture shows bigger than lightbox picture.May include a enfold solution to fix and help with all video needs.
youtube video with autostart plays then reloads again.
see privat areaOctober 27, 2015 at 10:39 am in reply to: google page speed 100 – see how other themes do it #525382werde gegen total cache testen.
gibt es keine Probleme mit woocommerce und minifywhat settings are good? only by testing is to risky for a live site.
Very importand is to do not cache wocommerce user data!!
August 10, 2015 at 4:19 pm in reply to: DE Erweiterung für enfold mit WGM German Market braucht dringend ein update #485427Das fehlt: Ist aber in German Market angehakt.
Ihr habt Zugang schaut euch das bitte an.
d) Die Produkt-Kurzbeschreibung im Warenkorb (fehlt) und an der Kasse anzeigen.e) viel platz in der warenkorb anzeige im z. b. opera browser
http://screencast.com/t/wnZxHNGMwVntDanke euch
August 10, 2015 at 4:07 pm in reply to: DE Erweiterung für enfold mit WGM German Market braucht dringend ein update #485419c) war ein cache problem.
A) ich kann kein update hinweis sehen@Ismael I am sorry but your solution does not look any good.
see link: http://awesomescreenshot.com/06951nk1edDas könnt Ihr doch besser?
Eine Preistabelle mit unterschiedlichen Reihen/Inhalten wünsche ich mir.Idee: Einzelne Felder bei zuviel Inhalt mit einem Plus Zeichen ausstatten.
Bei Klick öffnet mehr Inhalt. Jeweils der geringste Inhalt ist die Vorlage pro Zeile.- This reply was modified 9 years, 4 months ago by Tobias-B-Conrad.
-
AuthorPosts