bernhard-reiter
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Error While Saving in FSEHey,
we’ll need a bit more information to track down the error. Would you mind opening your browser’s Console while you’re in the Site Editor, and send us its contents after you click “Save”? Here are some instructions how to do that. It will look something like this. You can either copy-paste the text contents of the console and post them here, or use a file upload service to upload a screenshot.
- This reply was modified 2 years, 4 months ago by bernhard-reiter.
Hey,
you can edit the “Blog (alternate)” template in the Site Editor. You’ll need to select the Post Title block there and enable the “Make title a link” toggle in the Inspector Controls sidebar.
Here’s a screen recording: https://cloudup.com/cihZlg_BCJP
Hope that helps!
Forum: Themes and Templates
In reply to: [Twenty Twenty-Three] Unsuccessful in making Child ThemeForum: Themes and Templates
In reply to: [Twenty Twenty-Three] Unsuccessful in making Child ThemeHey @loisb,
As @yogabasics has said, the Create Block Theme plugin might be a good option here.
For what it’s worth, child themes for Block Themes — such as Twenty Twenty Three — are a bit more involved than for Classic Themes. If you’re creating your child theme manually (by including a
style.css
file) and would like it to contain the parent theme’s Style Variations, you’ll need to copy the parent theme’sstyles/
folder to the child theme.It’s possible that the Child Theme Wizard plugin isn’t currently taking this into account. As for www.remarpro.com’s own learning resources, we have some material on creating a child theme for a Block Theme, but it doesn’t currently mention the
styles/
folder; I’ll ask folks to include this information.Hope that helps!
Forum: Themes and Templates
In reply to: [Twenty Twenty-Three] Pagination IssueHi,
I’ve tried to reproduce this issue, but I seem to be able to see more than three posts on a website with the Twenty Twenty-Three theme.
Can you maybe provide us with a bit more context? The URL of your website would be very helpful to get a better grasp of the issue.
Thanks in advance!
Forum: Themes and Templates
In reply to: [Twenty Twenty-Three] BlogHey,
I’m not entirely sure what you mean by the “model section” — could you maybe rephrase the question or provide some additional context?
For what it’s worth, “Blog (Alternative)” is one of Twenty Twenty-Three’s “templates”. Its documentation says that it “provides a different way of displaying blog posts, in a list format with the date on the left and the post title on the right.”
To learn more about the “templates” concept, please refer to these docs.
Hope that helps!
Forum: Plugins
In reply to: [The Events Calendar] Update broke venue website linkA fix was committed some ~21 hrs ago:
Forum: Plugins
In reply to: [The Events Calendar] [patch] Hide end date in widget if equal to start dateAs the project that I’m customizing The Events Calendar for keeps growing, and the changes have become too numerous to keep track of easily, I’ve forked TEC’s wordpress plugin subversion repo on GitHub. Both the above patch and a couple of others are currently commits in the goldhauben branch. Feel free to check them out!
I might denote the ones that I believe are fit for upstream inclusion later by moving them to the master branch later (though I guess it’s kinda obvious which ones are), or by creating individual branches to be able to polish them.
Forum: Plugins
In reply to: [The Events Calendar] [patch] Display list of events for a given yearAs the project that I’m customizing The Events Calendar for keeps growing, and the changes have become too numerous to keep track of easily, I’ve forked TEC’s wordpress plugin subversion repo on GitHub. Both the above patch and a couple of others are currently commits in the goldhauben branch. Feel free to check them out!
I might denote the ones that I believe are fit for upstream inclusion later by moving them to the master branch later (though I guess it’s kinda obvious which ones are), or by creating individual branches to be able to polish them.
Forum: Plugins
In reply to: [The Events Calendar] [patch] Hide end date in widget if equal to start date@bl59marie: Yes. In wp-content/plugins/the-events-calendar/views/events-list-load-widget-display.php, delete the lines that read
if( $event->AllDay ) { echo ' <small><em>('.__('All Day','tribe-events-calendar').')</em></small>'; }
(should be lines 54-56).
Forum: Plugins
In reply to: [The Events Calendar] [patch] Hide end date in widget if equal to start dateAs per Klangwerk’s request, here’s another gist with both modified files in full length. Use the “View Raw” button on the right hand side to download. To apply the relevant changes, replace
wp-content/plugins/the-events-calendar/public/template-tags/date.php
and
wp-content/plugins/the-events-calendar/views/events-list-load-widget-display.phpby the respective files found at that gist. Needless to say, use at your own risk. Note that this was done using 2.0.10, and that updating the plugin afterwards will override these changes (unless upstream developers decide to include them in future releases).
Same thing happened to me when upgrading WP 3.3.1 to 3.5, and then the MCM plugin. Was appalled at first, but deleting the plugin and reinstalling (not just deactivating and reactivating!) as described by the original poster restored my FAQs and Glossary terms, too.
Forum: Fixing WordPress
In reply to: Reverse Proxy and PermalinksI found a WordPress-plugin based solution I posted here (as part of a different error topic):
I’m running WordPress under somewhat complex conditions (“reverse proxy”) causing my wordpress installation to be located at “https://myuni.ac.at/mydir” (==siteurl) and to be reached with a browser via “https://mydomain.at” (==home). This requires me to use the “Redirection” plugin with a regexp pass-through rule redirecting
^/mydir/(.*)
to
/$1Works quite well; the plugin required is found here.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Thumbnail suggestionNevermind, I found a pure-CSS solution. In ngg_shadow.css, replace the “Gallery style” section with the following:
/* ———– Gallery style ————-*/
.ngg-galleryoverview {
margin-top: 10px;
width: 100%;
clear:both;
display:block !important;
}.ngg-gallery-thumbnail-box {
float: left;
display: block;
width: 110px; /* 100 + 10 */
height: 85px; /* 75 + 10 */
background: url(shadowAlpha.png) no-repeat bottom right !important;
background: url(shadow.gif) no-repeat bottom right;
margin: 10px 0 0 10px !important;
}.ngg-gallery-thumbnail {
float: left;
margin: -6px 6px 6px -6px;
width: 100%;
height: 100%;
}.ngg-gallery-thumbnail a {
display: table-cell;
vertical-align: middle;
width: 110px;
height: 85px;
background-color: #FFFFFF;
border:1px solid #A9A9A9;
position:relative;
}.ngg-gallery-thumbnail img {
margin: auto;
display: block;
}.ngg-gallery-thumbnail a:hover {
background-color: #A9A9A9;
}.ngg-gallery-thumbnail span {
display:none;
}.ngg-clear {
clear: both;
}