Title: ssamioglu's Replies - page 2 | WordPress.org

---

# ssamioglu

  [  ](https://wordpress.org/support/users/ssamioglu/)

 *   [Profile](https://wordpress.org/support/users/ssamioglu/)
 *   [Topics Started](https://wordpress.org/support/users/ssamioglu/topics/)
 *   [Replies Created](https://wordpress.org/support/users/ssamioglu/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/ssamioglu/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/ssamioglu/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/ssamioglu/engagements/)
 *   [Favorites](https://wordpress.org/support/users/ssamioglu/favorites/)

 Search replies:

## Forum Replies Created

Viewing 14 replies - 16 through 29 (of 29 total)

[←](https://wordpress.org/support/users/ssamioglu/replies/?output_format=md) [1](https://wordpress.org/support/users/ssamioglu/replies/?output_format=md)
2

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy Table of Contents] “Sticky” Table of Contents (TOC) Widget)](https://wordpress.org/support/topic/sticky-table-of-contents-toc-widget/)
 *  [ssamioglu](https://wordpress.org/support/users/ssamioglu/)
 * (@ssamioglu)
 * [6 years ago](https://wordpress.org/support/topic/sticky-table-of-contents-toc-widget/#post-12915264)
 * Hi [@steven](https://wordpress.org/support/users/steven/),
 * can we make a sticky easy toc?
 * /* 1. Enable smooth scrolling */
    html { scroll-behavior: smooth; }
 * /* 2. Make nav sticky */
    main > nav { position: sticky; top: 2rem; align-self:
   start; }
 * /* 3. ScrollSpy active styles (see JS tab for activation) */
    .section-nav li.
   active > a { color: #333; font-weight: 500; }
 * /* Sidebar Navigation */
    .section-nav { padding-left: 0; border-left: 1px solid#
   efefef; }
 * .section-nav a {
    text-decoration: none; display: block; padding: .125rem 0; 
   color: #ccc; transition: all 50ms ease-in-out; /* 💡 This small transition makes
   setting of the active state smooth */ }
 * .section-nav a:hover,
    .section-nav a:focus { color: #666; }
 * /** Poor man’s reset **/
    * { box-sizing: border-box; }
 * html, body {
    background: #fff; }
 * body {
    font-family: -apple-system, BlinkMacSystemFont, “Segoe UI”, “Roboto”,“
   Oxygen”, “Ubuntu”, “Cantarell”, “Fira Sans”, “Droid Sans”, “Helvetica Neue”, 
   sans-serif; }
 * ul, ol {
    list-style: none; margin: 0; padding: 0; } li { margin-left: 1rem; }
 * h1 {
    font-weight: 300; }
 * /** page layout **/
    main { display: grid; grid-template-columns: 1fr 15em; max-
   width: 100em; width: 90%; margin: 0 auto; }
 * /** enlarge the sections for this demo, so that we have a long scrollable page**/
   
   section { padding-bottom: 20rem; }
 * window.addEventListener(‘DOMContentLoaded’, () => {
 *  const observer = new IntersectionObserver(entries => {
    entries.forEach(entry
   => { const id = entry.target.getAttribute(‘id’); if (entry.intersectionRatio 
   > 0) { document.querySelector(`nav li a[href="#${id}"]`).parentElement.classList.
   add(‘active’); } else { document.querySelector(`nav li a[href="#${id}"]`).parentElement.
   classList.remove(‘active’); } }); });
 *  // Track all sections that have an `id` applied
    document.querySelectorAll(‘
   section[id]’).forEach((section) => { observer.observe(section); });
 * });
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] CSS and Java is not minify even options checked](https://wordpress.org/support/topic/css-and-java-is-not-minify-even-options-checked/)
 *  [ssamioglu](https://wordpress.org/support/users/ssamioglu/)
 * (@ssamioglu)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/css-and-java-is-not-minify-even-options-checked/#post-4799032)
 * if you use cloudflare or something like that, you should check the settings for
   the conflict with w3 total cache,
    After I changed the cloudflare settings, it
   worked for me,
 * But still have a problem with page cache!!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[W3 Total Cache] CSS and Java is not minify even options checked](https://wordpress.org/support/topic/css-and-java-is-not-minify-even-options-checked/)
 *  [ssamioglu](https://wordpress.org/support/users/ssamioglu/)
 * (@ssamioglu)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/css-and-java-is-not-minify-even-options-checked/#post-4799015)
 * same problem and also when I activate the page cahce It always get Internal server
   error!
 * Any solutions?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook] [Plugin: Facebook] Failed posting to FB timeline](https://wordpress.org/support/topic/plugin-facebook-failed-posting-to-fb-timeline/)
 *  [ssamioglu](https://wordpress.org/support/users/ssamioglu/)
 * (@ssamioglu)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-facebook-failed-posting-to-fb-timeline/#post-2868943)
 * I have this problem which similar with your problems;
 * Failed posting to your Facebook Timeline. Error: {“message”:”Could not retrieve
   data from URL.”,”type”:”Exception”}
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Facebook] [Plugin: Facebook] Posts without og:description content](https://wordpress.org/support/topic/plugin-facebook-posts-without-ogdescription-content/)
 *  [ssamioglu](https://wordpress.org/support/users/ssamioglu/)
 * (@ssamioglu)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-facebook-posts-without-ogdescription-content/#post-2871552)
 * Me too, I google it but could not find anything to solve. Does anybody have a
   solution for this
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [the Wlelcomizer](https://wordpress.org/support/topic/the-wlelcomizer/)
 *  Thread Starter [ssamioglu](https://wordpress.org/support/users/ssamioglu/)
 * (@ssamioglu)
 * [14 years, 8 months ago](https://wordpress.org/support/topic/the-wlelcomizer/page/2/#post-2306642)
 * Thank you very much esmi, I solved the problem, sorry I am late to answer because
   of my job, it takes many time
 * Thanks again esmi
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [the Wlelcomizer](https://wordpress.org/support/topic/the-wlelcomizer/)
 *  Thread Starter [ssamioglu](https://wordpress.org/support/users/ssamioglu/)
 * (@ssamioglu)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/the-wlelcomizer/#post-2306394)
 * According to my research I founde that some plugins can cause this problem because
   of not being compatibilitiy with version of used wordpress so thought that if
   this problem began after I install the welcomizer, it can be because of the reason
   that I mentioned above,
 * thanks Esmi , I will try this
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [the Wlelcomizer](https://wordpress.org/support/topic/the-wlelcomizer/)
 *  Thread Starter [ssamioglu](https://wordpress.org/support/users/ssamioglu/)
 * (@ssamioglu)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/the-wlelcomizer/#post-2306378)
 * I mean with ” to google” that according to my research
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [the Wlelcomizer](https://wordpress.org/support/topic/the-wlelcomizer/)
 *  Thread Starter [ssamioglu](https://wordpress.org/support/users/ssamioglu/)
 * (@ssamioglu)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/the-wlelcomizer/#post-2306377)
 * sorry ,you misunderstand but really I can not display my own admin panel, it’s
   began after installed the welcomizer, I swear
 * how can I make you sure that I need help?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [the Wlelcomizer](https://wordpress.org/support/topic/the-wlelcomizer/)
 *  Thread Starter [ssamioglu](https://wordpress.org/support/users/ssamioglu/)
 * (@ssamioglu)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/the-wlelcomizer/#post-2306373)
 * if I could log in to my admin panel first of all I will completely delete this
   plug in , but I can not…
 * I think that this plugin is not compatibility with my version of wordpress according
   to google
 * how can we fix this?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Welcomizer] [Plugin: The Welcomizer] Does 3.1 compatibility exist?](https://wordpress.org/support/topic/plugin-the-welcomizer-does-31-compatibility-exist/)
 *  [ssamioglu](https://wordpress.org/support/users/ssamioglu/)
 * (@ssamioglu)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/plugin-the-welcomizer-does-31-compatibility-exist/page/2/#post-1939326)
 * [http://wordpress.org/support/topic/the-wlelcomizer?replies=2](http://wordpress.org/support/topic/the-wlelcomizer?replies=2)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [the Wlelcomizer](https://wordpress.org/support/topic/the-wlelcomizer/)
 *  Thread Starter [ssamioglu](https://wordpress.org/support/users/ssamioglu/)
 * (@ssamioglu)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/the-wlelcomizer/#post-2306368)
 * this massage began to displaying after installing The welcomizer
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [the Wlelcomizer](https://wordpress.org/support/topic/the-wlelcomizer/)
 *  Thread Starter [ssamioglu](https://wordpress.org/support/users/ssamioglu/)
 * (@ssamioglu)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/the-wlelcomizer/#post-2306366)
 * No, I want to log in my on admin panel, [http://www.akillisebekeler.com/wp-admin/](http://www.akillisebekeler.com/wp-admin/)
 * error massage is ““You do not have sufficient permissions to access this page”
   wrinting but in turkish
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Welcomizer] [Plugin: The Welcomizer] Does 3.1 compatibility exist?](https://wordpress.org/support/topic/plugin-the-welcomizer-does-31-compatibility-exist/)
 *  [ssamioglu](https://wordpress.org/support/users/ssamioglu/)
 * (@ssamioglu)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/plugin-the-welcomizer-does-31-compatibility-exist/page/2/#post-1939324)
 * After I installed the welcomizer plugin , I can not display my admin panel
 * error massage is ““You do not have sufficient permissions to access this page”
 * How can I fix this?

Viewing 14 replies - 16 through 29 (of 29 total)

[←](https://wordpress.org/support/users/ssamioglu/replies/?output_format=md) [1](https://wordpress.org/support/users/ssamioglu/replies/?output_format=md)
2