Wordpress - Logs

Everything You Need to Know About the Website
User avatar
Fabian
Verified

Photographer
Main Sport: Kitesurfing
Location: Belgium
Homespot: Oostende
Favorite Spot: Viana do Castelo
Favorite Brand: Eleveight
Kite-Range: Can't Kite atm
Contact:
Re: Wordpress - Logs

Post by Fabian »

The WP w3all phpBB plugin had an issue that caused a critical error during the registration process.

Fortunately, the developer of the plugin helped me identify the bug and released a new version that successfully fixed the problem.
User avatar
Fabian
Verified

Photographer
Main Sport: Kitesurfing
Location: Belgium
Homespot: Oostende
Favorite Spot: Viana do Castelo
Favorite Brand: Eleveight
Kite-Range: Can't Kite atm
Contact:
Re: Wordpress - Logs

Post by Fabian »

Updated Wordpress to Version 6.8.1 (Release Note)

After my site experienced timeout issues I installed to plugins to increase the speed:

Advanced Database Cleaner helped me to clean up my database by deleting orphaned items such as ‘old revisions’, ‘spam comments’, optimize database and more…

W3 Total Cache increased website performance and reduced load times.
User avatar
Fabian
Verified

Photographer
Main Sport: Kitesurfing
Location: Belgium
Homespot: Oostende
Favorite Spot: Viana do Castelo
Favorite Brand: Eleveight
Kite-Range: Can't Kite atm
Contact:
Re: Wordpress - Logs

Post by Fabian »

A small adjustment to the website’s Additional CSS code now ensures that the buttons in the Marketplace ( Directorist - Business Directory Plugin )match the appearance of those on the rest of the site. As you already know, the website is mainly built with WordPress and includes an integrated phpBB forum. This setup requires combining many different plugins, especially when it comes to visual and style consistency.

Code: Select all

/* Directorist Buttons im Hitchcock Theme Style mit festem Hover-Background */
.atbdp_filter_button,
.atbdp-filter-btn,
.directorist-filter-button,
.atbdp-filter-button,
.atbdp_map_btn,
.atbdp_reg_btn,
.atbdp_grid_view,
.atbdp_list_view,
.directorist-viewas__item,
.directorist-viewas__item a,
.directorist-viewas__item button,
.atbd_button,
.directorist-btn,
.atbd_directorist_btn {
  background-color: #000000 !important;      /* schwarz */
  border: none !important;
  border-radius: 3px !important;
  color: #ffffff !important;                 /* weiß */
  font-family: 'Montserrat', 'Helvetica Neue', 'Helvetica', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  margin: 0 !important;
  padding: 16px 20px !important;
  text-shadow: 0 1px 0 rgba(0,0,0,0.1) !important;
  text-transform: uppercase !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  cursor: pointer !important;
  transition: color 0.3s ease, background-color 0.3s ease !important;
}

/* Hover */
.atbdp_filter_button:hover,
.atbdp-filter-btn:hover,
.directorist-filter-button:hover,
.atbdp-filter-button:hover,
.atbdp_map_btn:hover,
.atbdp_reg_btn:hover,
.atbdp_grid_view:hover,
.atbdp_list_view:hover,
.directorist-viewas__item:hover,
.directorist-viewas__item a:hover,
.directorist-viewas__item button:hover,
.atbd_button:hover,
.directorist-btn:hover,
.atbd_directorist_btn:hover {
  background-color: #000000 !important;      /* Hintergrund bleibt schwarz */
  color: #0b8ed0 !important;                  /* Schrift wird blau */
  text-shadow: none !important;
  box-shadow: none !important;
  filter: none !important;
}

/* Aktive Buttons */
.atbdp_filter_button.active,
.atbdp-f

Post Reply