Burak
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Highlight BoxesHi Steven,
You have an animation being applied to the gray boxes around your content. To disable the animation (pulsing) using CSS you can use the following rule in your “Additional CSS” section:
.scoop2:before, p { animation: none; }
I can only assume these are features of the theme you are using. Perhaps the theme was updated and they implemented new design elements.
Forum: Fixing WordPress
In reply to: None of galleries working properlyHi,
I’m not familiar with the galleries you’re using but after inspecting your page I can see the image links are present in the source. I also see that Foogallery uses “data-src-fg=” in place of “src=” and it appears there is an issue with that attribute. If you change the attribute to “src” your image is shown on the page.
<a href="https://ibb.co/k3m8NT"><img src="https://preview.ibb.co/esPv2T/foogallery.png" alt="foogallery" border="0" /></a>
Hopefully this can point you somewhere in the right direction so you can start getting this sorted out.
Forum: Themes and Templates
In reply to: [Storefront] How to delete description title from product pageHi you can add the below CSS rule-sets to have them no longer displayed. They aren’t deleted, just not shown. If you have a child theme you can insert into your .css document or through the Customizer by pasting into “Additional CSS”.
/* remove category */ .single-product .product .product_meta span.posted_in { display: none; } /* remove "Description" h2 from description tab */ .woocommerce-tabs #tab-description h2 { display: none; }
Forum: Themes and Templates
In reply to: [Storefront] Sidebar – Product Widget – Select ProductsHi Luc,
No problem, I hope my suggestion helped you out with your issue.
Good luck with your site!
Forum: Themes and Templates
In reply to: [Storefront] Storefront header.php kodlar silindi.Merhaba,
SFTP’ile direk dosyayi yukleyebilirsin hosting hesabina. FileZilla diye bir program var: https://filezilla-project.org/ ve bunu kullanabilirsin.
SFTP ayarlari cPanel/kontrol panel bulunur FTP accounts veya FTP hesaplar/baglantilar isimli bir bolumunde. FTP accounts veya FTP hesaplara girdiginde kurulmus hesabin yoksa kurman gerekecek. Kurduktan sonra FTP ayarlarinda iki tane dosya olacak FileZilla icin, biri FTP, oburu SFTP. SFTP’yi indir, bunda ayarlar olacak. FileZilla’yi ac, “Dosya” tikla, sonra “Ice Aktar” ve sec yeni indirdigin SFTP dosyayi.
Bunu yaptiktan sonra FileZilla kurulmus olacak ve cPanelina artik baglantin var. Baglanmak icin “Dosya” tikla sonra “Site Yoneticisi”. Listede siteni goreceksin, sec ve “Baglan” tikla. Parolani soracak, bundan sonra hosting’daki tum dosyalari gorebileceksin sag bolumunde, sol tarafi senin bilgisayarin dosyalarin. Ordan artik istedigin dosyalari direk sitene yukleyebilirsiniz.
Forum: Themes and Templates
In reply to: [Storefront] Sidebar – Product Widget – Select ProductsHi,
When you are viewing the options available in the widget, at the bottom there is a button labeled Visibility which opens up a section with 3 drop down menus where you can set conditions for the products you would like to be shown or hidden. You can also add additional conditions to get more speciic by clicking on the plus symbol.
For example if you select “Show” if “Category” is “Accessories”, the widget will display products in the Accessories category. If you add another condition you can then select “Tag” is “Hats” and then check the match all conditions box, now the products displayed will be those in the Accessories category with products that have the tag Hats.
If you keep the “match all conditions” box unchecked it will show any products that match either one of the conditions.
You can use a media query to set the display from none to initial (default value).
For example if you want the menu to reappear at a screen size of 768px (iPad) and smaller you can create a media query as follows;
@media (max-width: 768px) { .storefront-primary-navigation { display: initial; } }
Your menu should now reappear on mobile devices.